diff --git a/battle_srv/models/room.go b/battle_srv/models/room.go index 773d9d1..09ecc5f 100644 --- a/battle_srv/models/room.go +++ b/battle_srv/models/room.go @@ -70,7 +70,7 @@ const ( ) const ( - DEFAULT_PLAYER_RADIUS = float64(16) + DEFAULT_PLAYER_RADIUS = float64(12) ) // These directions are chosen such that when speed is changed to "(speedX+delta, speedY+delta)" for any of them, the direction is unchanged. @@ -772,7 +772,7 @@ func (pR *Room) OnDismissed() { pR.WorldToVirtualGridRatio = float64(1000) pR.VirtualGridToWorldRatio = float64(1.0) / pR.WorldToVirtualGridRatio // this is a one-off computation, should avoid division in iterations pR.SpAtkLookupFrames = 5 - pR.PlayerDefaultSpeed = int32(float64(2) * pR.WorldToVirtualGridRatio) // in virtual grids per frame + pR.PlayerDefaultSpeed = int32(float64(1) * pR.WorldToVirtualGridRatio) // in virtual grids per frame pR.Players = make(map[int32]*Player) pR.PlayersArr = make([]*Player, pR.Capacity) pR.CollisionSysMap = make(map[int32]*resolv.Object) @@ -809,25 +809,25 @@ func (pR *Room) OnDismissed() { pR.MeleeSkillConfig = make(map[int32]*MeleeBullet, 0) pR.MeleeSkillConfig[punchSkillId] = &MeleeBullet{ // for offender - StartupFrames: int32(23), + StartupFrames: int32(10), ActiveFrames: int32(3), - RecoveryFrames: int32(61), // I hereby set it to be 1 frame more than the actual animation to avoid critical transition, i.e. when the animation is 1 frame from ending but "rdfPlayer.framesToRecover" is already counted 0 and the player triggers an other same attack, making an effective bullet trigger but no animation is played due to same animName is still playing - RecoveryFramesOnBlock: int32(61), - RecoveryFramesOnHit: int32(61), + RecoveryFrames: int32(34), + RecoveryFramesOnBlock: int32(34), + RecoveryFramesOnHit: int32(34), Moveforward: &Vec2D{ X: 0, Y: 0, }, - HitboxOffset: float64(24.0), // should be about the radius of the PlayerCollider + HitboxOffset: float64(12.0), // should be about the radius of the PlayerCollider HitboxSize: &Vec2D{ - X: float64(45.0), + X: float64(23.0), Y: float64(32.0), }, // for defender HitStunFrames: int32(18), BlockStunFrames: int32(9), - Pushback: float64(11.0), + Pushback: float64(8.0), ReleaseTriggerType: int32(1), // 1: rising-edge, 2: falling-edge Damage: int32(5), } @@ -1456,7 +1456,8 @@ func (pR *Room) refreshColliders(spaceW, spaceH int32) { pR.Space = resolv.NewSpace(int(spaceW), int(spaceH), minStep, minStep) // allocate a new collision space everytime after a battle is settled for _, player := range pR.Players { wx, wy := VirtualGridToWorldPos(player.VirtualGridX, player.VirtualGridY, pR.VirtualGridToWorldRatio) - playerCollider := GenerateRectCollider(wx, wy, player.ColliderRadius*2, player.ColliderRadius*2, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, "Player") + colliderWidth, colliderHeight := player.ColliderRadius*2, player.ColliderRadius*3 + playerCollider := GenerateRectCollider(wx, wy, colliderWidth, colliderHeight, pR.collisionSpaceOffsetX, pR.collisionSpaceOffsetY, "Player") playerCollider.Data = player pR.Space.Add(playerCollider) // Keep track of the collider in "pR.CollisionSysMap" diff --git a/dragonBonesAnimProjects/SoldierFireGhost.dbproj b/dragonBonesAnimProjects/SoldierFireGhost.dbproj deleted file mode 100644 index 91582ec..0000000 Binary files a/dragonBonesAnimProjects/SoldierFireGhost.dbproj and /dev/null differ diff --git a/dragonBonesAnimProjects/SoldierWaterGhost.dbproj b/dragonBonesAnimProjects/SoldierWaterGhost.dbproj deleted file mode 100644 index b2b4ad3..0000000 Binary files a/dragonBonesAnimProjects/SoldierWaterGhost.dbproj and /dev/null differ diff --git a/dragonBonesAnimProjects/library/SoldierWaterGhost.json b/dragonBonesAnimProjects/library/SoldierWaterGhost.json deleted file mode 100644 index 7d856cd..0000000 --- a/dragonBonesAnimProjects/library/SoldierWaterGhost.json +++ /dev/null @@ -1 +0,0 @@ -{"SubTexture":[{"width":23,"y":44,"height":22,"name":"biu","x":53},{"width":9,"y":68,"height":14,"name":"rightArm","x":76},{"y":35,"frameX":-1,"frameY":0,"width":27,"frameWidth":29,"height":32,"name":"yinmoqe00","frameHeight":32,"x":89},{"width":34,"y":1,"height":41,"name":"body","x":53},{"width":9,"y":44,"height":13,"name":"rightShoulder","x":78},{"y":50,"frameX":0,"frameY":0,"width":19,"frameWidth":19,"height":18,"name":"rightFrontArm","frameHeight":18,"x":23},{"width":14,"y":70,"height":14,"name":"rightHand","x":23},{"y":68,"frameX":0,"frameY":0,"width":12,"frameWidth":12,"height":12,"name":"leftArm","frameHeight":12,"x":62},{"width":13,"y":73,"height":12,"name":"leftShoulder","x":1},{"width":20,"y":50,"height":21,"name":"leftFrontArm","x":1},{"width":33,"y":1,"height":32,"name":"head","x":89},{"width":50,"y":1,"height":47,"name":"head2","x":1},{"width":16,"y":68,"height":14,"name":"leftHand","x":44},{"y":59,"frameX":-1,"frameY":-2,"width":4,"frameWidth":8,"height":4,"name":"huomiao01","frameHeight":8,"x":78}],"width":128,"height":128,"name":"SoldierWaterGhost","imagePath":"SoldierWaterGhost_tex.png"} \ No newline at end of file diff --git a/dragonBonesAnimProjects/library/SoldierWaterGhost.png b/dragonBonesAnimProjects/library/SoldierWaterGhost.png deleted file mode 100644 index adbd7b5..0000000 Binary files a/dragonBonesAnimProjects/library/SoldierWaterGhost.png and /dev/null differ diff --git a/dragonBonesAnimProjects/SoldierElf.dbproj b/dragonBonesProjects/SoldierElf.dbproj similarity index 100% rename from dragonBonesAnimProjects/SoldierElf.dbproj rename to dragonBonesProjects/SoldierElf.dbproj diff --git a/dragonBonesProjects/SoldierFireGhost.dbproj b/dragonBonesProjects/SoldierFireGhost.dbproj new file mode 100644 index 0000000..135657e Binary files /dev/null and b/dragonBonesProjects/SoldierFireGhost.dbproj differ diff --git a/dragonBonesProjects/SoldierWaterGhost.dbproj b/dragonBonesProjects/SoldierWaterGhost.dbproj new file mode 100644 index 0000000..1af02a9 Binary files /dev/null and b/dragonBonesProjects/SoldierWaterGhost.dbproj differ diff --git a/dragonBonesAnimProjects/library/SoldierElf.json b/dragonBonesProjects/library/SoldierElf.json similarity index 100% rename from dragonBonesAnimProjects/library/SoldierElf.json rename to dragonBonesProjects/library/SoldierElf.json diff --git a/dragonBonesAnimProjects/library/SoldierElf.png b/dragonBonesProjects/library/SoldierElf.png similarity index 100% rename from dragonBonesAnimProjects/library/SoldierElf.png rename to dragonBonesProjects/library/SoldierElf.png diff --git a/dragonBonesAnimProjects/library/SoldierFireGhost.json b/dragonBonesProjects/library/SoldierFireGhost.json similarity index 100% rename from dragonBonesAnimProjects/library/SoldierFireGhost.json rename to dragonBonesProjects/library/SoldierFireGhost.json diff --git a/dragonBonesAnimProjects/library/SoldierFireGhost.png b/dragonBonesProjects/library/SoldierFireGhost.png similarity index 100% rename from dragonBonesAnimProjects/library/SoldierFireGhost.png rename to dragonBonesProjects/library/SoldierFireGhost.png diff --git a/dragonBonesProjects/library/SoldierWaterGhost.json b/dragonBonesProjects/library/SoldierWaterGhost.json new file mode 100644 index 0000000..50d9d02 --- /dev/null +++ b/dragonBonesProjects/library/SoldierWaterGhost.json @@ -0,0 +1 @@ +{"width":128,"SubTexture":[{"frameWidth":23,"y":50,"frameX":-2,"frameHeight":22,"frameY":-2,"width":19,"height":19,"name":"biu","x":1},{"width":9,"y":50,"height":14,"name":"rightArm","x":42},{"frameWidth":29,"y":34,"frameX":-6,"frameHeight":32,"frameY":0,"width":20,"height":32,"name":"yinmoqe00","x":88},{"frameWidth":34,"y":1,"frameX":0,"frameHeight":41,"frameY":0,"width":33,"height":39,"name":"body","x":53},{"width":9,"y":56,"height":13,"name":"rightShoulder","x":74},{"frameWidth":19,"y":50,"frameX":0,"frameHeight":18,"frameY":0,"width":18,"height":17,"name":"rightFrontArm","x":22},{"width":14,"y":50,"height":14,"name":"rightHand","x":110},{"width":12,"y":42,"height":12,"name":"leftArm","x":74},{"width":13,"y":66,"height":12,"name":"leftShoulder","x":110},{"frameWidth":20,"y":42,"frameX":-1,"frameHeight":21,"frameY":0,"width":19,"height":21,"name":"leftFrontArm","x":53},{"width":50,"y":1,"height":47,"name":"head2","x":1},{"frameWidth":33,"y":1,"frameX":-1,"frameHeight":32,"frameY":0,"width":32,"height":31,"name":"head","x":88},{"width":16,"y":34,"height":14,"name":"leftHand","x":110},{"frameWidth":8,"y":1,"frameX":-2,"frameHeight":8,"frameY":-3,"width":2,"height":2,"name":"huomiao01","x":122}],"height":128,"name":"SoldierWaterGhost","imagePath":"SoldierWaterGhost_tex.png"} \ No newline at end of file diff --git a/dragonBonesProjects/library/SoldierWaterGhost.png b/dragonBonesProjects/library/SoldierWaterGhost.png new file mode 100644 index 0000000..c2af9ee Binary files /dev/null and b/dragonBonesProjects/library/SoldierWaterGhost.png differ diff --git a/frontend/assets/resources/animation/BluePacman/Bottom.anim b/frontend/assets/resources/animation/BluePacman/Bottom.anim deleted file mode 100644 index cd41ddb..0000000 --- a/frontend/assets/resources/animation/BluePacman/Bottom.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "Bottom", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "783f1240-d608-40be-8108-3013ab53cfe6" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "393e649b-addb-4f91-b687-438433026c8d" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/Bottom.anim.meta b/frontend/assets/resources/animation/BluePacman/Bottom.anim.meta deleted file mode 100644 index 8672c1d..0000000 --- a/frontend/assets/resources/animation/BluePacman/Bottom.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "115ea7bb-d47f-4d3c-a52a-f46584346c3f", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/BottomLeft.anim b/frontend/assets/resources/animation/BluePacman/BottomLeft.anim deleted file mode 100644 index bde3aae..0000000 --- a/frontend/assets/resources/animation/BluePacman/BottomLeft.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "BottomLeft", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "748c55f0-e761-40f6-b13b-e416b3d8a55c" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "6164bac7-9882-43ce-b3d0-9d062d6d0b49" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/BottomLeft.anim.meta b/frontend/assets/resources/animation/BluePacman/BottomLeft.anim.meta deleted file mode 100644 index 9553a51..0000000 --- a/frontend/assets/resources/animation/BluePacman/BottomLeft.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "a1bf7c7c-b9f7-4b65-86e3-f86a9e798fb6", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/BottomRight.anim b/frontend/assets/resources/animation/BluePacman/BottomRight.anim deleted file mode 100644 index 4cf215f..0000000 --- a/frontend/assets/resources/animation/BluePacman/BottomRight.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "BottomRight", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "34cf9fbb-8def-4faf-a56e-123b4c45706c" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "b6709dd6-6ba7-4222-af38-de79ac80ce8b" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/BottomRight.anim.meta b/frontend/assets/resources/animation/BluePacman/BottomRight.anim.meta deleted file mode 100644 index 3e51dcc..0000000 --- a/frontend/assets/resources/animation/BluePacman/BottomRight.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "d5af527a-9f0c-4398-b2dd-84426be7bd32", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/Left.anim b/frontend/assets/resources/animation/BluePacman/Left.anim deleted file mode 100644 index 1e95eaf..0000000 --- a/frontend/assets/resources/animation/BluePacman/Left.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "Left", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "02cd24e3-1c4a-46d7-85af-9034c9445ba7" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "1f121837-a493-4a41-90e5-74ea560930ad" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/Left.anim.meta b/frontend/assets/resources/animation/BluePacman/Left.anim.meta deleted file mode 100644 index 484d85c..0000000 --- a/frontend/assets/resources/animation/BluePacman/Left.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "b60618d7-569d-4f13-bdeb-f20341fbadb6", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/Right.anim b/frontend/assets/resources/animation/BluePacman/Right.anim deleted file mode 100644 index e8b9bf0..0000000 --- a/frontend/assets/resources/animation/BluePacman/Right.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "Right", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "a6ec6a1c-dde5-459d-84f9-7b2b8a163e7b" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "b5d11244-f30a-4b0d-b67b-23648d253d44" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/Right.anim.meta b/frontend/assets/resources/animation/BluePacman/Right.anim.meta deleted file mode 100644 index f0cf6c4..0000000 --- a/frontend/assets/resources/animation/BluePacman/Right.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "0b3fb38e-9110-4191-9b72-6b64a224d049", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/Top.anim b/frontend/assets/resources/animation/BluePacman/Top.anim deleted file mode 100644 index 6d5d5e9..0000000 --- a/frontend/assets/resources/animation/BluePacman/Top.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "Top", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "8967d249-e9cf-4e44-85e8-6b9377129d9e" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "492a57fb-6a5c-423a-bcfe-0695a7828881" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/Top.anim.meta b/frontend/assets/resources/animation/BluePacman/Top.anim.meta deleted file mode 100644 index a6bfb2e..0000000 --- a/frontend/assets/resources/animation/BluePacman/Top.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "1bc6de53-800b-4da3-ab8e-4a45e3aa4230", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/TopLeft.anim b/frontend/assets/resources/animation/BluePacman/TopLeft.anim deleted file mode 100644 index c49acf4..0000000 --- a/frontend/assets/resources/animation/BluePacman/TopLeft.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "TopLeft", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "96187689-85df-46e8-b4db-410eae03c135" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "6b002583-7688-43d3-b3fa-102ae0046628" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/TopLeft.anim.meta b/frontend/assets/resources/animation/BluePacman/TopLeft.anim.meta deleted file mode 100644 index bc4c75f..0000000 --- a/frontend/assets/resources/animation/BluePacman/TopLeft.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "ee0d670c-893e-4e4d-96dd-5571db18ee97", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/TopRight.anim b/frontend/assets/resources/animation/BluePacman/TopRight.anim deleted file mode 100644 index b6755d1..0000000 --- a/frontend/assets/resources/animation/BluePacman/TopRight.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "TopRight", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "ba89046f-8b70-4edb-9f61-534dff476325" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "bc1ef316-d6ad-4538-b223-a0fed8094609" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/TopRight.anim.meta b/frontend/assets/resources/animation/BluePacman/TopRight.anim.meta deleted file mode 100644 index 27f22f6..0000000 --- a/frontend/assets/resources/animation/BluePacman/TopRight.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "596df84a-2e4e-4f1d-967c-a82649f564a8", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/attackedLeft.anim b/frontend/assets/resources/animation/BluePacman/attackedLeft.anim deleted file mode 100644 index 2dbb233..0000000 --- a/frontend/assets/resources/animation/BluePacman/attackedLeft.anim +++ /dev/null @@ -1,43 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "attackedLeft", - "_objFlags": 0, - "_native": "", - "_duration": 0.3333333333333333, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "02cd24e3-1c4a-46d7-85af-9034c9445ba7" - } - }, - { - "frame": 0.08333333333333333, - "value": { - "__uuid__": "8c522ad3-ee82-41a7-892e-05c05442e2e3" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "1f121837-a493-4a41-90e5-74ea560930ad" - } - }, - { - "frame": 0.25, - "value": { - "__uuid__": "1c0ec5ec-51cb-467d-b597-8e69ce580cfd" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/attackedLeft.anim.meta b/frontend/assets/resources/animation/BluePacman/attackedLeft.anim.meta deleted file mode 100644 index 66df4e6..0000000 --- a/frontend/assets/resources/animation/BluePacman/attackedLeft.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "8acc4e9f-3c47-4b66-9a9d-d012709680f6", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/attackedRight.anim b/frontend/assets/resources/animation/BluePacman/attackedRight.anim deleted file mode 100644 index bea4208..0000000 --- a/frontend/assets/resources/animation/BluePacman/attackedRight.anim +++ /dev/null @@ -1,43 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "attackedRight", - "_objFlags": 0, - "_native": "", - "_duration": 0.3333333333333333, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "a6ec6a1c-dde5-459d-84f9-7b2b8a163e7b" - } - }, - { - "frame": 0.08333333333333333, - "value": { - "__uuid__": "d5ec0aaf-d4a9-4b2e-b9c1-bdc54b355b73" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "b5d11244-f30a-4b0d-b67b-23648d253d44" - } - }, - { - "frame": 0.25, - "value": { - "__uuid__": "360dfc7d-4ed1-4fb9-8d2f-7533d05a4830" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/BluePacman/attackedRight.anim.meta b/frontend/assets/resources/animation/BluePacman/attackedRight.anim.meta deleted file mode 100644 index 74dc175..0000000 --- a/frontend/assets/resources/animation/BluePacman/attackedRight.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "c7cda0cd-dbce-4722-abd2-aeca28263a21", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman.meta b/frontend/assets/resources/animation/RedPacman.meta deleted file mode 100644 index c2af5dd..0000000 --- a/frontend/assets/resources/animation/RedPacman.meta +++ /dev/null @@ -1,7 +0,0 @@ -{ - "ver": "1.0.1", - "uuid": "135f388e-7e75-4ece-b267-4e07835cba74", - "isSubpackage": false, - "subpackageName": "", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/Bottom.anim b/frontend/assets/resources/animation/RedPacman/Bottom.anim deleted file mode 100644 index edc93b1..0000000 --- a/frontend/assets/resources/animation/RedPacman/Bottom.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "Bottom", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "c79694bc-ff6f-416b-9047-b82f41fe791a" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "609c77a2-bdfe-4967-8de6-646532302c97" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/Bottom.anim.meta b/frontend/assets/resources/animation/RedPacman/Bottom.anim.meta deleted file mode 100644 index e682f3b..0000000 --- a/frontend/assets/resources/animation/RedPacman/Bottom.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "28194c48-ae3b-4197-8263-0d474ae8b9bc", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/BottomLeft.anim b/frontend/assets/resources/animation/RedPacman/BottomLeft.anim deleted file mode 100644 index ebdfdf4..0000000 --- a/frontend/assets/resources/animation/RedPacman/BottomLeft.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "BottomLeft", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "07b6d385-3f51-48c1-8165-38756b3d84fa" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "c627bf3b-0e97-4423-aeea-54c7511894d6" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/BottomLeft.anim.meta b/frontend/assets/resources/animation/RedPacman/BottomLeft.anim.meta deleted file mode 100644 index 8cb3222..0000000 --- a/frontend/assets/resources/animation/RedPacman/BottomLeft.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "e1c45a36-2022-4b18-a2db-b5e2e0a120ed", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/BottomRight.anim b/frontend/assets/resources/animation/RedPacman/BottomRight.anim deleted file mode 100644 index a74b079..0000000 --- a/frontend/assets/resources/animation/RedPacman/BottomRight.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "BottomRight", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "d0327836-1910-4c6a-9291-c8bb044c54f5" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "1d3e614a-bb2a-4b1d-87ca-0cddd6e03fff" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/BottomRight.anim.meta b/frontend/assets/resources/animation/RedPacman/BottomRight.anim.meta deleted file mode 100644 index 7395a43..0000000 --- a/frontend/assets/resources/animation/RedPacman/BottomRight.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "126dff26-0ace-439d-89b5-b888aa52d159", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/Left.anim b/frontend/assets/resources/animation/RedPacman/Left.anim deleted file mode 100644 index b72a0f5..0000000 --- a/frontend/assets/resources/animation/RedPacman/Left.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "Left", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "c9528117-c878-41aa-ad5d-641fefcaa89f" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "c0e5d042-8bc1-449b-9a2d-7844129c5188" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/Left.anim.meta b/frontend/assets/resources/animation/RedPacman/Left.anim.meta deleted file mode 100644 index 51d4959..0000000 --- a/frontend/assets/resources/animation/RedPacman/Left.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "95c2d541-8f99-446a-a7e0-094130ce6d41", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/Right.anim b/frontend/assets/resources/animation/RedPacman/Right.anim deleted file mode 100644 index b0efefa..0000000 --- a/frontend/assets/resources/animation/RedPacman/Right.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "Right", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "1054cf4c-69a5-4834-8966-03bc613d4483" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "b88522bd-8b6b-44a1-9c84-5518ae7f5c2c" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/Right.anim.meta b/frontend/assets/resources/animation/RedPacman/Right.anim.meta deleted file mode 100644 index 8175ed2..0000000 --- a/frontend/assets/resources/animation/RedPacman/Right.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "380f5fa0-f77f-434a-8f39-d545ee6823c5", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/Top.anim b/frontend/assets/resources/animation/RedPacman/Top.anim deleted file mode 100644 index 2a8f6f1..0000000 --- a/frontend/assets/resources/animation/RedPacman/Top.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "Top", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "9702ca76-66c8-4ea9-a976-45f86e15830a" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "6390f1c3-b4cc-41df-acfb-645e8f90fb36" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/Top.anim.meta b/frontend/assets/resources/animation/RedPacman/Top.anim.meta deleted file mode 100644 index ecf45b1..0000000 --- a/frontend/assets/resources/animation/RedPacman/Top.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "a306c6de-ccd8-492b-bfec-c6be0a4cbde2", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/TopLeft.anim b/frontend/assets/resources/animation/RedPacman/TopLeft.anim deleted file mode 100644 index d97ead7..0000000 --- a/frontend/assets/resources/animation/RedPacman/TopLeft.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "TopLeft", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "a669112a-f263-443d-9757-60d0372e0fe8" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "3ed70f56-3b60-4bda-9d2a-8d4b5ecb12f9" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/TopLeft.anim.meta b/frontend/assets/resources/animation/RedPacman/TopLeft.anim.meta deleted file mode 100644 index cd72087..0000000 --- a/frontend/assets/resources/animation/RedPacman/TopLeft.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "f496072b-51fd-4406-abbd-9885ac23f7a9", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/TopRight.anim b/frontend/assets/resources/animation/RedPacman/TopRight.anim deleted file mode 100644 index 3b69ad5..0000000 --- a/frontend/assets/resources/animation/RedPacman/TopRight.anim +++ /dev/null @@ -1,31 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "TopRight", - "_objFlags": 0, - "_native": "", - "_duration": 0.25, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "3d84f335-85c4-4dd0-a5d3-38f4da1e1611" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "6d36877f-dc27-4ebc-9407-14fbcf2314df" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/TopRight.anim.meta b/frontend/assets/resources/animation/RedPacman/TopRight.anim.meta deleted file mode 100644 index bc4dfe2..0000000 --- a/frontend/assets/resources/animation/RedPacman/TopRight.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "6405ad8b-3084-4b67-8c2e-9b4d34fa3d09", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/attackedLeft.anim b/frontend/assets/resources/animation/RedPacman/attackedLeft.anim deleted file mode 100644 index 160a842..0000000 --- a/frontend/assets/resources/animation/RedPacman/attackedLeft.anim +++ /dev/null @@ -1,43 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "attackedLeft", - "_objFlags": 0, - "_native": "", - "_duration": 0.3333333333333333, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "c9528117-c878-41aa-ad5d-641fefcaa89f" - } - }, - { - "frame": 0.08333333333333333, - "value": { - "__uuid__": "987c7dc0-e81f-4891-979d-0998794e6889" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "c0e5d042-8bc1-449b-9a2d-7844129c5188" - } - }, - { - "frame": 0.25, - "value": { - "__uuid__": "9205c378-c50c-4303-af32-dbf9422375cf" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/attackedLeft.anim.meta b/frontend/assets/resources/animation/RedPacman/attackedLeft.anim.meta deleted file mode 100644 index f0588c1..0000000 --- a/frontend/assets/resources/animation/RedPacman/attackedLeft.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "af16cdcb-6e82-4be6-806d-9fc52ae99fff", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/attackedRight.anim b/frontend/assets/resources/animation/RedPacman/attackedRight.anim deleted file mode 100644 index 6845f6b..0000000 --- a/frontend/assets/resources/animation/RedPacman/attackedRight.anim +++ /dev/null @@ -1,43 +0,0 @@ -{ - "__type__": "cc.AnimationClip", - "_name": "attackedRight", - "_objFlags": 0, - "_native": "", - "_duration": 0.3333333333333333, - "sample": 12, - "speed": 1, - "wrapMode": "2", - "curveData": { - "comps": { - "cc.Sprite": { - "spriteFrame": [ - { - "frame": 0, - "value": { - "__uuid__": "1054cf4c-69a5-4834-8966-03bc613d4483" - } - }, - { - "frame": 0.08333333333333333, - "value": { - "__uuid__": "8f3cf81e-1251-4013-b684-13f2830c7425" - } - }, - { - "frame": 0.16666666666666666, - "value": { - "__uuid__": "b88522bd-8b6b-44a1-9c84-5518ae7f5c2c" - } - }, - { - "frame": 0.25, - "value": { - "__uuid__": "69f1bd37-6628-4fd1-b0f2-08073d1edb29" - } - } - ] - } - } - }, - "events": [] -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/RedPacman/attackedRight.anim.meta b/frontend/assets/resources/animation/RedPacman/attackedRight.anim.meta deleted file mode 100644 index e67bff2..0000000 --- a/frontend/assets/resources/animation/RedPacman/attackedRight.anim.meta +++ /dev/null @@ -1,5 +0,0 @@ -{ - "ver": "2.1.0", - "uuid": "02eba566-4d22-4fa7-99d7-f032f5845421", - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json index d70c3a4..e4bf555 100644 --- a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json +++ b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json @@ -1 +1 @@ -{"frameRate":60,"name":"SoldierWaterGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierWaterGhost","aabb":{"x":-34.2,"y":-91.74,"width":77.68,"height":94.31},"bone":[{"name":"root"},{"inheritScale":false,"length":13,"name":"leftShoulder","parent":"root","transform":{"x":-11.2185,"y":-56.7863,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.2,"y":-46.0924,"scX":3,"scY":3}},{"inheritScale":false,"length":17,"name":"rightArm","parent":"root","transform":{"x":13.5908,"y":-53.6036,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":12.64,"y":-42.7787,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":11.5,"y":-54.7347}},{"inheritScale":false,"length":17,"name":"leg","parent":"root","transform":{"x":-0.9105,"y":-2.8201,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":22,"name":"body","parent":"root","transform":{"x":2.0039,"y":-24.7902,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":12,"name":"rightShoulder","parent":"root","transform":{"x":18.2082,"y":-52.6804,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":11,"name":"head","parent":"root","transform":{"x":8.206,"y":-62.581,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":10,"name":"leftArm","parent":"root","transform":{"x":-13.0118,"y":-53.6185,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-10.0286,"y":-56.4408,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-30.0572,"y":-33.1972,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":26.5689,"y":-30.0747}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":17.6467,"y":1.3208,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":14.7447,"y":3.5738,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":10.7292,"y":-5.7822,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":14.7808,"y":2.8582,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":10.63,"y":-0.15,"skX":85.72,"skY":85.72}}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":13.01,"y":-2.08,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":13.28,"y":-2.44,"skX":83.48,"skY":83.48}}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":6.29,"y":0.98,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"body","display":[{"name":"yinmo02","transform":{"x":12.81,"y":-2.38,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":4.79,"y":-0.12,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":9.07,"y":-0.39,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":3.42,"y":-0.82,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":3.74,"y":-1.19,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":5.38,"y":-0.23,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":6.91,"y":0.09,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":4.09,"y":-0.34,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":44.16,"y":14.08},{"duration":12,"tweenEasing":0,"x":44.16,"y":14.08},{"duration":15,"tweenEasing":0,"x":31.04,"y":15.36},{"duration":15,"tweenEasing":0,"x":22.08,"y":-0.64},{"duration":6,"x":-10.24,"y":-23.36}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":7.36,"y":-2.48},{"duration":9,"tweenEasing":0,"x":7.36,"y":-2.48},{"duration":15,"tweenEasing":0,"x":-2,"y":-15.76},{"duration":12,"tweenEasing":0,"x":-14.48,"y":-20.48},{"duration":12,"tweenEasing":0,"x":-14.64,"y":-36.8},{"duration":6,"x":-40.56,"y":-53.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-14.8,"y":25.6},{"duration":12,"tweenEasing":0,"x":-14.8,"y":25.6},{"duration":18,"tweenEasing":0,"x":-29.2,"y":17.6},{"duration":12,"tweenEasing":0,"x":-38,"y":9.2},{"duration":9,"tweenEasing":0,"x":-56.4,"y":4.4},{"duration":3,"x":-68.8,"y":4}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":10.56,"y":11.2},{"duration":12,"tweenEasing":0,"x":10.56,"y":11.2},{"duration":15,"tweenEasing":0,"x":-1.6,"y":1.6},{"duration":18,"tweenEasing":0,"x":-19.84,"y":3.2},{"duration":9,"tweenEasing":0,"x":-29.76,"y":-6.72},{"duration":3,"x":-39.68,"y":-24}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.15,"y":1.19},{"duration":15,"tweenEasing":0,"x":0.46,"y":-1.06},{"duration":15,"tweenEasing":0,"x":-0.33,"y":-2.07},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":5.76},{"duration":15,"tweenEasing":0,"x":5.14,"y":1.94},{"duration":15,"tweenEasing":0,"x":8.29,"y":-0.16},{"duration":15,"tweenEasing":0,"x":7.36,"y":2.19},{"duration":0,"x":5.76}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":3.84,"y":-0.96},{"duration":15,"tweenEasing":0,"x":7.18,"y":1.44},{"duration":15,"tweenEasing":0,"x":13.26,"y":3.09},{"duration":15,"tweenEasing":0,"x":11.89,"y":3.87},{"duration":0,"x":3.84,"y":-0.96}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":5.44,"y":1.28},{"duration":15,"tweenEasing":0,"x":4.96,"y":4.88},{"duration":15,"tweenEasing":0,"x":7.29,"y":0.64},{"duration":15,"tweenEasing":0,"x":7.59,"y":5.42},{"duration":0,"x":5.44,"y":1.28}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":3.41,"y":1.17},{"duration":15,"tweenEasing":0,"x":1.71,"y":2.68},{"duration":15,"tweenEasing":0,"x":3.89,"y":0.18},{"duration":15,"tweenEasing":0,"x":5.61,"y":3.87},{"duration":0,"x":3.41,"y":1.17}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":2.72},{"duration":15,"tweenEasing":0,"x":0.96,"y":-0.18},{"duration":15,"tweenEasing":0,"x":1.42,"y":3.34},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":6,"tweenEasing":0,"x":-0.8},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":12,"tweenEasing":0,"x":0.64},{"duration":6,"tweenEasing":0,"x":0.64},{"duration":6,"tweenEasing":0,"x":-0.32},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.19,"y":-1.7},{"duration":15,"tweenEasing":0,"x":0.81,"y":-2.06},{"duration":15,"tweenEasing":0,"x":0.11,"y":-0.1},{"duration":3,"tweenEasing":0,"x":0.11,"y":-0.1},{"duration":6,"tweenEasing":0,"x":-0.08,"y":-2.55},{"duration":6,"tweenEasing":0,"y":-2.64},{"duration":0,"x":-0.19,"y":-1.7}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":4.32,"y":4.08},{"duration":15,"tweenEasing":0,"x":4.96,"y":2.34},{"duration":15,"tweenEasing":0,"x":-8.37,"y":-4.26},{"duration":15,"tweenEasing":0,"x":4.21,"y":3.38},{"duration":0,"x":4.32,"y":4.08}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":12,"tweenEasing":0,"x":29.6,"y":-47},{"duration":24,"tweenEasing":0,"x":22.4,"y":-63.2},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":12,"tweenEasing":0,"x":29.6,"y":-47},{"duration":24,"tweenEasing":0,"x":22.4,"y":-63.2},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":9,"tweenEasing":0,"x":29.6,"y":-47},{"duration":3,"x":22.4,"y":-63.2}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":15,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":21,"tweenEasing":0,"x":5.03,"y":-47.77},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":15,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":21,"tweenEasing":0,"x":5.03,"y":-47.77},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":12,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":6,"x":5.03,"y":-47.77}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":18,"tweenEasing":0,"x":-37.94,"y":-42.74},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":18,"tweenEasing":0,"x":-37.94,"y":-42.74},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":12,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":6,"x":-37.94,"y":-42.74}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":9,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":15,"tweenEasing":0,"x":-27.43,"y":-20.57},{"duration":15,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":15,"tweenEasing":0,"x":-27.43,"y":-20.57},{"duration":15,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":9,"x":-27.43,"y":-20.57}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":60,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":-18.2,"y":13.4},{"duration":12,"tweenEasing":0,"x":-18.2,"y":13.4},{"duration":15,"tweenEasing":0,"x":-35.6,"y":3.6},{"duration":12,"tweenEasing":0,"x":-48,"y":0.8},{"duration":9,"x":-61.2}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-105.08},{"duration":12,"tweenEasing":0,"rotate":-105.08},{"duration":15,"tweenEasing":0,"rotate":-96.73},{"duration":12,"tweenEasing":0,"rotate":-69.9},{"duration":9,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-29.33,"y":21.33},{"duration":9,"tweenEasing":0,"x":-29.33,"y":21.33},{"duration":15,"tweenEasing":0,"x":-46.13,"y":12},{"duration":15,"tweenEasing":0,"x":-53.87,"y":18.93},{"duration":15,"x":-62.13,"y":14.67}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-108.91},{"duration":15,"tweenEasing":0,"rotate":-108.91},{"duration":15,"tweenEasing":0,"rotate":-127.09},{"duration":15,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":-9.07,"y":26.4},{"duration":12,"tweenEasing":0,"x":-9.07,"y":26.4},{"duration":15,"tweenEasing":0,"x":-27.2,"y":5.6},{"duration":9,"tweenEasing":0,"x":-46.93,"y":-8.53},{"duration":18,"x":-54.93,"y":-10.93}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":12,"tweenEasing":0,"rotate":31.2},{"duration":15,"tweenEasing":0,"rotate":-0.05},{"duration":9,"tweenEasing":0,"rotate":-26.91},{"duration":18,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":15,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":12,"tweenEasing":0,"x":0.21,"y":0.98},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-12.3},{"duration":12,"tweenEasing":0,"rotate":18.53},{"duration":15,"tweenEasing":0,"rotate":-9},{"duration":12,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.43,"y":0.09},{"duration":12,"tweenEasing":0,"x":0.37,"y":0.24},{"duration":15,"tweenEasing":0,"x":1.38,"y":-1.56},{"duration":12,"tweenEasing":0,"x":0.39,"y":0.48},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":13.83},{"duration":12,"tweenEasing":0,"rotate":25.06},{"duration":15,"tweenEasing":0,"rotate":17.69},{"duration":12,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-5.77,"y":-1.21},{"duration":12,"tweenEasing":0,"x":16.81,"y":-1.49},{"duration":15,"tweenEasing":0,"x":16.01,"y":-1.17},{"duration":12,"tweenEasing":0,"x":2.27,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":40},{"duration":12,"tweenEasing":0,"rotate":-12.39},{"duration":15,"tweenEasing":0,"rotate":4.99},{"duration":12,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.85,"y":-3.89},{"duration":12,"tweenEasing":0,"x":25.9,"y":0.2},{"duration":15,"tweenEasing":0,"x":24.94,"y":0.84},{"duration":12,"tweenEasing":0,"x":2.99,"y":-4.37},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":66.79},{"duration":12,"tweenEasing":0,"rotate":-95.1},{"duration":15,"tweenEasing":0,"rotate":-98.37},{"duration":12,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-8.35,"y":0.91},{"duration":12,"tweenEasing":0,"x":18.7,"y":3.66},{"duration":15,"tweenEasing":0,"x":17.58,"y":4.46},{"duration":12,"tweenEasing":0,"x":2.45,"y":1.81},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":15.73},{"duration":12,"tweenEasing":0,"rotate":2.95},{"duration":15,"tweenEasing":0,"rotate":2.83},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-7.25,"y":-1.47},{"duration":12,"tweenEasing":0,"x":12.57,"y":4.07},{"duration":15,"tweenEasing":0,"x":12.25,"y":4.55},{"duration":12,"tweenEasing":0,"x":0.8,"y":0.69},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-11.02},{"duration":12,"tweenEasing":0,"rotate":-27.15},{"duration":15,"tweenEasing":0,"rotate":-15.36},{"duration":12,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.93,"y":-2.03},{"duration":12,"tweenEasing":0,"x":2.55,"y":-0.18},{"duration":15,"tweenEasing":0,"x":2.87,"y":0.46},{"duration":12,"tweenEasing":0,"y":0.8},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-11.15},{"duration":12,"tweenEasing":0,"rotate":29.43},{"duration":15,"tweenEasing":0,"rotate":30.7},{"duration":12,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":12,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-0.05},{"duration":6,"tweenEasing":0,"y":-0.05},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":12,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":6,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-0.39},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-0.39},{"duration":12,"tweenEasing":0,"x":-1.08,"y":-0.33},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-34.26},{"duration":12,"tweenEasing":0,"rotate":-8.09},{"duration":15,"tweenEasing":0,"rotate":-36.51},{"duration":12,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":18,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.4,"y":0.36},{"duration":12,"tweenEasing":0,"x":-0.68,"y":0.24},{"duration":15,"tweenEasing":0,"x":-0.88,"y":0.14},{"duration":12,"tweenEasing":0,"x":0.62,"y":0.51},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-36.51},{"duration":12,"tweenEasing":0,"rotate":-41.51},{"duration":15,"tweenEasing":0,"rotate":-50.9},{"duration":12,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":18,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":-5.92,"y":-0.64},{"duration":12,"tweenEasing":0,"x":2.79,"y":7.74},{"duration":15,"tweenEasing":0,"x":2.95,"y":8.38},{"duration":12,"tweenEasing":0,"x":-7.65,"y":-6.15},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":8.81},{"duration":12,"tweenEasing":0,"rotate":7.26},{"duration":15,"tweenEasing":0,"rotate":15.7},{"duration":12,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":42},{"duration":6,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":42},{"duration":12,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":39},{"duration":15,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":18,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-5.03,"y":3.43},{"duration":3,"tweenEasing":0,"x":-1.32,"y":-0.45},{"duration":6,"tweenEasing":0,"x":6.49,"y":-2.74},{"duration":3,"x":9.6,"y":-12.57}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9,"y":7.6},{"duration":3,"tweenEasing":0,"x":-9,"y":7.6},{"duration":3,"tweenEasing":0,"x":-20.26,"y":-2.26},{"duration":9,"tweenEasing":0,"x":-23.68,"y":-12.6},{"duration":0,"x":-48,"y":-32.6}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.36,"y":10.88},{"duration":3,"tweenEasing":0,"x":-1.52,"y":-14.48},{"duration":6,"tweenEasing":0,"x":3.68,"y":-18.72},{"duration":3,"x":13.12,"y":-27.2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":5.44,"y":1.92},{"duration":3,"tweenEasing":0,"x":-12.08,"y":-14.48},{"duration":9,"tweenEasing":0,"x":-13.46,"y":-17.74},{"duration":0,"x":-18.88,"y":-27.52}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.31,"y":4.6},{"duration":9,"tweenEasing":0,"x":-7.03,"y":3.4},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.32,"y":2.11},{"duration":9,"tweenEasing":0,"x":-4.59,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-5.95,"y":5.81},{"duration":9,"tweenEasing":0,"x":-4.61,"y":1.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.05,"y":0.53},{"duration":9,"tweenEasing":0,"x":-5.11,"y":-0.59},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-4.19,"y":2.37},{"duration":9,"tweenEasing":0,"x":0.8,"y":1.76},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.28,"y":0.24},{"duration":9,"tweenEasing":0,"x":0.64,"y":-0.08},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.44,"y":-0.72},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":-4.96,"y":5.17},{"duration":9,"tweenEasing":0,"x":-3.87,"y":1.92},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":14.4,"y":3.43},{"duration":18,"tweenEasing":0,"x":14.4,"y":3.43},{"duration":15,"tweenEasing":0,"x":6.4,"y":-10.29},{"duration":15,"tweenEasing":0,"x":8.46,"y":-23.09},{"duration":6,"x":1.14,"y":-32.46}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-3.2,"y":1.6},{"duration":15,"tweenEasing":0,"x":-3.2,"y":1.6},{"duration":18,"tweenEasing":0,"x":0.23,"y":-24.23},{"duration":18,"tweenEasing":0,"x":-8.69,"y":-39.54},{"duration":9,"x":-11.61,"y":-48.32}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-6.13,"y":22.4},{"duration":12,"tweenEasing":0,"x":-6.13,"y":22.4},{"duration":18,"tweenEasing":0,"x":-2.76,"y":-4.89},{"duration":12,"tweenEasing":0,"x":8.89,"y":-19.64},{"duration":9,"x":22.49,"y":-23.38}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":4,"y":6.13},{"duration":9,"tweenEasing":0,"x":4,"y":6.13},{"duration":9,"tweenEasing":0,"x":1.07,"y":-7.73},{"duration":15,"tweenEasing":0,"x":-13.07,"y":-20.27},{"duration":24,"x":-40.53,"y":-29.6}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":6,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":9,"tweenEasing":0,"x":0.3,"y":-0.43},{"duration":3,"tweenEasing":0,"x":0.3,"y":-0.43},{"duration":42,"x":-0.66,"y":-0.09}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.36,"y":-1.9},{"duration":6,"tweenEasing":0,"x":1.36,"y":-1.9},{"duration":9,"tweenEasing":0,"x":1.29,"y":-2.29},{"duration":3,"tweenEasing":0,"x":1.29,"y":-2.29},{"duration":15,"tweenEasing":0,"x":0.3,"y":0.3},{"duration":9,"tweenEasing":0,"x":-1.66,"y":1.87},{"duration":6,"tweenEasing":0,"x":1.28,"y":-7.25},{"duration":12,"x":0.98,"y":-8.17}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.84,"y":0.44},{"duration":3,"tweenEasing":0,"x":7.31,"y":-0.39},{"duration":6,"tweenEasing":0,"x":7.31,"y":0.09},{"duration":9,"tweenEasing":0,"x":10.95,"y":1.85},{"duration":3,"tweenEasing":0,"x":10.69,"y":-1.88},{"duration":15,"tweenEasing":0,"x":-2.01,"y":-11.67},{"duration":9,"tweenEasing":0,"x":-9.21,"y":-16.87},{"duration":6,"tweenEasing":0,"x":-0.41,"y":38.01},{"duration":12,"tweenEasing":0,"x":-3.29,"y":34.33},{"duration":0,"x":-3.29,"y":37.53}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":6.76,"y":-4.62},{"duration":3,"tweenEasing":0,"x":6.76,"y":-5.1},{"duration":6,"tweenEasing":0,"x":6.76,"y":-4.62},{"duration":9,"tweenEasing":0,"x":12.09,"y":-1.76},{"duration":3,"tweenEasing":0,"x":11.83,"y":-5.49},{"duration":15,"tweenEasing":0,"x":0.87,"y":-11.81},{"duration":9,"tweenEasing":0,"x":2.47,"y":-1.81},{"duration":6,"tweenEasing":0,"x":2.87,"y":28.27},{"duration":12,"tweenEasing":0,"x":1.27,"y":25.87},{"duration":0,"x":1.59,"y":27.47}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":8.19,"y":6.12},{"duration":3,"tweenEasing":0,"x":7.71,"y":5.8},{"duration":6,"tweenEasing":0,"x":7.71,"y":6.28},{"duration":9,"tweenEasing":0,"x":8.92,"y":10.46},{"duration":3,"tweenEasing":0,"x":9.58,"y":11.39},{"duration":15,"tweenEasing":0,"x":-2.71,"y":-14.39},{"duration":9,"tweenEasing":0,"x":-1.24,"y":-22.13},{"duration":6,"tweenEasing":0,"x":-2.2,"y":36.6},{"duration":12,"tweenEasing":0,"x":-5.08,"y":33.88},{"duration":0,"x":0.04,"y":42.84}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":6.06,"y":1.67},{"duration":3,"tweenEasing":0,"x":6.06,"y":1.19},{"duration":6,"tweenEasing":0,"x":6.06,"y":1.67},{"duration":9,"tweenEasing":0,"x":6.79,"y":3.11},{"duration":3,"tweenEasing":0,"x":6.52,"y":-1.69},{"duration":15,"tweenEasing":0,"x":-5.18,"y":-17.07},{"duration":9,"tweenEasing":0,"x":-0.38,"y":-13.87},{"duration":6,"tweenEasing":0,"x":-2.38,"y":32.61},{"duration":12,"tweenEasing":0,"x":-0.46,"y":33.73},{"duration":0,"x":-0.46,"y":38.53}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.18,"y":0.49},{"duration":3,"tweenEasing":0,"x":-0.34,"y":0.17},{"duration":6,"tweenEasing":0,"x":-0.34,"y":0.65},{"duration":9,"tweenEasing":0,"x":-0.18,"y":2.25},{"duration":3,"tweenEasing":0,"x":-0.44,"y":-1.48},{"duration":15,"tweenEasing":0,"x":2.36,"y":-14.52},{"duration":9,"tweenEasing":0,"x":3.29,"y":-8.39},{"duration":6,"tweenEasing":0,"x":9.96,"y":24.76},{"duration":12,"tweenEasing":0,"x":10.6,"y":19.16},{"duration":0,"x":10.92,"y":21.4}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.84},{"duration":9,"tweenEasing":0,"x":-0.84},{"duration":3,"tweenEasing":0,"x":-0.52,"y":-0.64},{"duration":15,"tweenEasing":0,"x":-0.52,"y":-3.84},{"duration":6,"tweenEasing":0,"x":-0.52,"y":-5.28},{"duration":21,"x":-0.52,"y":-3.52}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":9,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":6,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":27,"tweenEasing":0,"x":-2.24,"y":-1.59},{"duration":9,"tweenEasing":0,"x":-2.24,"y":-1.59},{"duration":18,"x":-1.03,"y":-1.63}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":6,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":12,"tweenEasing":0,"x":-1.32,"y":-0.29},{"duration":15,"tweenEasing":0,"x":-1.32,"y":-0.29},{"duration":9,"tweenEasing":0,"x":-2.93,"y":-3.06},{"duration":6,"tweenEasing":0,"x":-6.42,"y":3.56},{"duration":12,"tweenEasing":0,"x":-5.56,"y":4.61},{"duration":0,"x":-7.53,"y":5.06}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":6,"tweenEasing":0,"x":7.79,"y":1.43},{"duration":3,"tweenEasing":0,"x":6.83,"y":0.79},{"duration":6,"tweenEasing":0,"x":6.83,"y":1.27},{"duration":9,"tweenEasing":0,"x":6.51,"y":2.87},{"duration":3,"tweenEasing":0,"x":6.24,"y":-0.86},{"duration":15,"tweenEasing":0,"x":-1.89,"y":-11.77},{"duration":9,"tweenEasing":0,"x":0.11,"y":0.9},{"duration":6,"tweenEasing":0,"x":-4.52,"y":42.14},{"duration":12,"tweenEasing":0,"x":-6.12,"y":39.74},{"duration":0,"x":-5.8,"y":41.34}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-7.31},{"duration":9,"tweenEasing":0,"y":-12.8},{"duration":6,"tweenEasing":0,"y":-12.8},{"duration":27,"x":0.8,"y":-41.6}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-18.49,"y":6.76},{"duration":18,"tweenEasing":0,"x":-18.49,"y":6.76},{"duration":21,"tweenEasing":0,"x":-16,"y":-10.13},{"duration":21,"tweenEasing":0,"x":-24.71,"y":-24.36},{"duration":9,"x":-24.53,"y":-37.69}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-1.87,"y":10.67},{"duration":24,"tweenEasing":0,"x":-1.87,"y":10.67},{"duration":21,"tweenEasing":0,"x":3.25,"y":-16.21},{"duration":18,"tweenEasing":0,"x":0.69,"y":-29.17},{"duration":0,"x":1.17,"y":-34.61}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":4,"y":-17},{"duration":24,"tweenEasing":0,"x":1,"y":-29.2},{"duration":3,"x":-0.2,"y":-39.8}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.6,"y":0.39},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.11,"y":-1.6},{"duration":24,"tweenEasing":0,"x":5.47,"y":-1.28},{"duration":24,"tweenEasing":0,"x":6.08,"y":-1.98},{"duration":0,"x":4.11,"y":-1.6}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.8,"y":0.91},{"duration":24,"tweenEasing":0,"x":4.8,"y":0.91},{"duration":24,"tweenEasing":0,"x":5.07,"y":1.29},{"duration":0,"x":4.8,"y":0.91}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.19,"y":4.72},{"duration":24,"tweenEasing":0,"x":6.33,"y":5.71},{"duration":24,"tweenEasing":0,"x":6.14,"y":5.69},{"duration":0,"x":4.19,"y":4.72}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.43,"y":0.23},{"duration":24,"tweenEasing":0,"x":5.46,"y":1.26},{"duration":24,"tweenEasing":0,"x":5.41,"y":0.45},{"duration":0,"x":3.43,"y":0.23}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.23,"y":0.23},{"duration":24,"tweenEasing":0,"x":0.5,"y":-0.57},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":6.56,"y":3.17},{"duration":24,"tweenEasing":0,"x":6.56,"y":3.17},{"duration":24,"tweenEasing":0,"x":7.09,"y":2.9},{"duration":0,"x":6.56,"y":3.17}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":6.4,"y":-11.2},{"duration":24,"tweenEasing":0,"x":6.4,"y":-23.8},{"duration":0,"x":14,"y":-30.2}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-10.4,"y":-18.24},{"duration":21,"tweenEasing":0,"x":-10.08,"y":-32.8},{"duration":12,"x":-12.8,"y":-39.68}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":8.8,"y":-12.2},{"duration":24,"tweenEasing":0,"x":11,"y":-27.6},{"duration":24,"x":12.2,"y":-38.6}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.8,"y":-11.2},{"duration":18,"tweenEasing":0,"x":7.6,"y":-22.2},{"duration":9,"x":8.6,"y":-30.4}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-4.53,"y":-13.33},{"duration":18,"tweenEasing":0,"x":-3.47,"y":-21.07},{"duration":33,"x":-6.13,"y":-34.93}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":18,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.4,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.31,"y":-0.92},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":18,"tweenEasing":0,"x":-0.19,"y":-1.43},{"duration":0,"x":-2.4,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.4,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-2.35},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":18,"tweenEasing":0,"x":-0.53,"y":-4.55},{"duration":0,"x":-2.4,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.13,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.29,"y":0.61},{"duration":9,"tweenEasing":0,"x":0.57,"y":-1.49},{"duration":9,"tweenEasing":0,"x":0.67,"y":-0.35},{"duration":9,"tweenEasing":0,"x":0.57,"y":-1.49},{"duration":9,"tweenEasing":0,"x":0.67,"y":0.13},{"duration":9,"tweenEasing":0,"x":0.57,"y":-2.13},{"duration":9,"tweenEasing":0,"x":0.67,"y":0.61},{"duration":18,"tweenEasing":0,"x":0.57,"y":-2.13},{"duration":0,"x":-2.13,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":-0.72},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.61},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.61},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.77},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":18,"tweenEasing":0,"x":1.72,"y":-3.73},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.32,"y":0.32},{"duration":9,"tweenEasing":0,"y":-0.99},{"duration":9,"tweenEasing":0,"y":-0.96},{"duration":9,"tweenEasing":0,"y":-1.47},{"duration":9,"tweenEasing":0,"y":-1.12},{"duration":9,"tweenEasing":0,"y":-1.95},{"duration":9,"tweenEasing":0,"y":-0.96},{"duration":18,"tweenEasing":0,"y":-2.11},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.12},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.12},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":18,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":18,"tweenEasing":0,"x":-0.41,"y":0.01},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":9,"tweenEasing":0,"x":1.52,"y":0.77},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.51},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.51},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.99},{"duration":18,"tweenEasing":0,"x":2.26,"y":-2.14},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":6.93,"y":-13.69},{"duration":0,"x":10.84,"y":-19.73}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-8,"y":-6.63},{"duration":15,"tweenEasing":0,"x":-10.06,"y":-17.83},{"duration":9,"x":-10.74,"y":-24.69}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":7.77,"y":-12.8},{"duration":21,"tweenEasing":0,"x":13.49,"y":-21.94},{"duration":9,"x":13.03,"y":-26.74}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":6.8,"y":-15.73},{"duration":18,"tweenEasing":0,"x":6.27,"y":-28.27},{"duration":0,"x":7.33,"y":-35.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4.64,"y":-11.84},{"duration":21,"tweenEasing":0,"x":-11.68,"y":-18.88},{"duration":6,"x":-15.04,"y":-24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.58,"y":0.86},{"duration":24,"tweenEasing":0,"x":0.58,"y":0.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-1.12},{"duration":24,"tweenEasing":0,"x":-0.16,"y":-1.12},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.2,"y":-1.99},{"duration":24,"tweenEasing":0,"x":0.36,"y":-1.83},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.32,"y":-1.37},{"duration":24,"tweenEasing":0,"y":-0.89},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.64,"y":-3.79},{"duration":24,"tweenEasing":0,"x":0.64,"y":-1.55},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-1.44},{"duration":24,"tweenEasing":0,"x":0.16,"y":-0.64},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.17,"y":1.03},{"duration":24,"tweenEasing":0,"x":-0.13,"y":0.26},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":21,"tweenEasing":0,"x":1.49,"y":0.92},{"duration":24,"tweenEasing":0,"x":2.13,"y":1.4},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Walking"}]}]} \ No newline at end of file +{"frameRate":60,"name":"SoldierWaterGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierWaterGhost","aabb":{"x":-17.1,"y":-45.87,"width":38.84,"height":47.16},"bone":[{"name":"root"},{"inheritScale":false,"length":6.5,"name":"leftShoulder","parent":"root","transform":{"x":-5.60925,"y":-28.39315,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.1,"y":-23.0462,"scX":3,"scY":3}},{"inheritScale":false,"length":8.5,"name":"rightArm","parent":"root","transform":{"x":6.7954,"y":-26.8018,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":6.32,"y":-21.38935,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":5.75,"y":-27.36735}},{"inheritScale":false,"length":8.5,"name":"leg","parent":"root","transform":{"x":-0.45525,"y":-1.41005,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":11,"name":"body","parent":"root","transform":{"x":1.00195,"y":-12.3951,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":6,"name":"rightShoulder","parent":"root","transform":{"x":9.1041,"y":-26.3402,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":5.5,"name":"head","parent":"root","transform":{"x":4.103,"y":-31.2905,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":5,"name":"leftArm","parent":"root","transform":{"x":-6.5059,"y":-26.80925,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-5.0143,"y":-28.2204,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-15.0286,"y":-16.5986,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":13.28445,"y":-15.03735}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":8.82335,"y":0.6604,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":7.37235,"y":1.7869,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":5.3646,"y":-2.8911,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":7.3904,"y":1.4291,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":3.46,"y":0.04,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"body","display":[{"name":"yinmo02","transform":{"x":6.41,"y":-1.19,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":1.87,"y":-0.59,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":1.71,"y":-0.41,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":2.04,"y":-0.17,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":4.54,"y":-0.2,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":5.32,"y":-0.07,"skX":85.72,"skY":85.72}}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":2.69,"y":-0.12,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":3.15,"y":0.49,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":2.4,"y":-0.06,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":6.5,"y":-1.04,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":6.64,"y":-1.22,"skX":83.48,"skY":83.48}}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":15,"tweenEasing":0,"x":15.52,"y":7.68},{"duration":15,"tweenEasing":0,"x":11.04,"y":-0.32},{"duration":6,"x":-5.12,"y":-11.68}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":9,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":15,"tweenEasing":0,"x":-1,"y":-7.88},{"duration":12,"tweenEasing":0,"x":-7.24,"y":-10.24},{"duration":12,"tweenEasing":0,"x":-7.32,"y":-18.4},{"duration":6,"x":-20.28,"y":-26.52}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":12,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":18,"tweenEasing":0,"x":-14.6,"y":8.8},{"duration":12,"tweenEasing":0,"x":-19,"y":4.6},{"duration":9,"tweenEasing":0,"x":-28.2,"y":2.2},{"duration":3,"x":-34.4,"y":2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":12,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":15,"tweenEasing":0,"x":-0.8,"y":0.8},{"duration":18,"tweenEasing":0,"x":-9.92,"y":1.6},{"duration":9,"tweenEasing":0,"x":-14.88,"y":-3.36},{"duration":3,"x":-19.84,"y":-12}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.07,"y":0.59},{"duration":15,"tweenEasing":0,"x":0.23,"y":-0.53},{"duration":15,"tweenEasing":0,"x":-0.17,"y":-1.03},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.88},{"duration":15,"tweenEasing":0,"x":2.57,"y":0.97},{"duration":15,"tweenEasing":0,"x":4.14,"y":-0.08},{"duration":15,"tweenEasing":0,"x":3.68,"y":1.09},{"duration":0,"x":2.88}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.92,"y":-0.48},{"duration":15,"tweenEasing":0,"x":3.59,"y":0.72},{"duration":15,"tweenEasing":0,"x":6.63,"y":1.54},{"duration":15,"tweenEasing":0,"x":5.95,"y":1.94},{"duration":0,"x":1.92,"y":-0.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.72,"y":0.64},{"duration":15,"tweenEasing":0,"x":2.48,"y":2.44},{"duration":15,"tweenEasing":0,"x":3.65,"y":0.32},{"duration":15,"tweenEasing":0,"x":3.79,"y":2.71},{"duration":0,"x":2.72,"y":0.64}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.71,"y":0.58},{"duration":15,"tweenEasing":0,"x":0.85,"y":1.34},{"duration":15,"tweenEasing":0,"x":1.95,"y":0.09},{"duration":15,"tweenEasing":0,"x":2.81,"y":1.94},{"duration":0,"x":1.71,"y":0.58}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":1.36},{"duration":15,"tweenEasing":0,"x":0.48,"y":-0.09},{"duration":15,"tweenEasing":0,"x":0.71,"y":1.67},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.4},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":12,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":-0.16},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.1,"y":-0.85},{"duration":15,"tweenEasing":0,"x":0.41,"y":-1.03},{"duration":15,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":6,"tweenEasing":0,"x":-0.04,"y":-1.27},{"duration":6,"tweenEasing":0,"y":-1.32},{"duration":0,"x":-0.1,"y":-0.85}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.16,"y":2.04},{"duration":15,"tweenEasing":0,"x":2.48,"y":1.17},{"duration":15,"tweenEasing":0,"x":-4.18,"y":-2.13},{"duration":15,"tweenEasing":0,"x":2.1,"y":1.69},{"duration":0,"x":2.16,"y":2.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":9,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":3,"x":11.2,"y":-31.6}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":6,"x":2.52,"y":-23.89}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":12,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":6,"x":-18.97,"y":-21.37}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":9,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":9,"x":-13.71,"y":-10.29}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":34,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":4,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-17.8,"y":1.8},{"duration":8,"tweenEasing":0,"x":-24,"y":0.4},{"duration":6,"x":-30.6}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-96.73},{"duration":8,"tweenEasing":0,"rotate":-69.9},{"duration":6,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":2,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":4,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":10,"tweenEasing":0,"x":-23.07,"y":6},{"duration":8,"tweenEasing":0,"x":-26.93,"y":9.46},{"duration":10,"x":-31.07,"y":7.33}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-108.91},{"duration":10,"tweenEasing":0,"rotate":-108.91},{"duration":8,"tweenEasing":0,"rotate":-127.09},{"duration":10,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":2,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":6,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":10,"tweenEasing":0,"x":-13.6,"y":2.8},{"duration":4,"tweenEasing":0,"x":-23.46,"y":-4.26},{"duration":12,"x":-27.46,"y":-5.46}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":31.2},{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":10,"tweenEasing":0,"rotate":-0.05},{"duration":4,"tweenEasing":0,"rotate":-26.91},{"duration":12,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.1,"y":0.49},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-12.3},{"duration":8,"tweenEasing":0,"rotate":18.53},{"duration":8,"tweenEasing":0,"rotate":-9},{"duration":8,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.71,"y":0.04},{"duration":8,"tweenEasing":0,"x":0.18,"y":0.12},{"duration":8,"tweenEasing":0,"x":0.69,"y":-0.78},{"duration":8,"tweenEasing":0,"x":0.2,"y":0.24},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":13.83},{"duration":8,"tweenEasing":0,"rotate":25.06},{"duration":8,"tweenEasing":0,"rotate":17.69},{"duration":8,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-2.88,"y":-0.6},{"duration":8,"tweenEasing":0,"x":8.4,"y":-0.74},{"duration":8,"tweenEasing":0,"x":8.01,"y":-0.58},{"duration":8,"tweenEasing":0,"x":1.14,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":40},{"duration":8,"tweenEasing":0,"rotate":-12.39},{"duration":8,"tweenEasing":0,"rotate":4.99},{"duration":8,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.42,"y":-1.95},{"duration":8,"tweenEasing":0,"x":12.95,"y":0.1},{"duration":8,"tweenEasing":0,"x":12.47,"y":0.42},{"duration":8,"tweenEasing":0,"x":1.5,"y":-2.19},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":66.79},{"duration":8,"tweenEasing":0,"rotate":-95.1},{"duration":8,"tweenEasing":0,"rotate":-98.37},{"duration":8,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-4.17,"y":0.46},{"duration":8,"tweenEasing":0,"x":9.35,"y":1.83},{"duration":8,"tweenEasing":0,"x":8.79,"y":2.23},{"duration":8,"tweenEasing":0,"x":1.23,"y":0.91},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":15.73},{"duration":8,"tweenEasing":0,"rotate":2.95},{"duration":8,"tweenEasing":0,"rotate":2.83},{"duration":8,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.63,"y":-0.73},{"duration":8,"tweenEasing":0,"x":6.29,"y":2.04},{"duration":8,"tweenEasing":0,"x":6.13,"y":2.27},{"duration":8,"tweenEasing":0,"x":0.4,"y":0.34},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.02},{"duration":8,"tweenEasing":0,"rotate":-27.15},{"duration":8,"tweenEasing":0,"rotate":-15.36},{"duration":8,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-1.47,"y":-1.01},{"duration":8,"tweenEasing":0,"x":1.27,"y":-0.09},{"duration":8,"tweenEasing":0,"x":1.44,"y":0.23},{"duration":8,"tweenEasing":0,"y":0.4},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.15},{"duration":8,"tweenEasing":0,"rotate":29.43},{"duration":8,"tweenEasing":0,"rotate":30.7},{"duration":8,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":14,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.16},{"duration":2,"tweenEasing":0,"y":-0.16},{"duration":0}],"scaleFrame":[{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":2,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.54,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":11.7},{"duration":2,"tweenEasing":0,"rotate":-34.26},{"duration":8,"tweenEasing":0,"rotate":-8.09},{"duration":8,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":2,"tweenEasing":0,"x":-0.7,"y":0.18},{"duration":8,"tweenEasing":0,"x":-0.34,"y":0.12},{"duration":8,"tweenEasing":0,"x":-0.44,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.31,"y":0.26},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":21.7},{"duration":2,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-41.51},{"duration":8,"tweenEasing":0,"rotate":-50.9},{"duration":8,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":2,"tweenEasing":0,"x":-2.96,"y":-0.32},{"duration":8,"tweenEasing":0,"x":1.4,"y":3.87},{"duration":8,"tweenEasing":0,"x":1.48,"y":4.19},{"duration":8,"tweenEasing":0,"x":-3.83,"y":-3.08},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":-6.67},{"duration":2,"tweenEasing":0,"rotate":8.81},{"duration":8,"tweenEasing":0,"rotate":7.26},{"duration":8,"tweenEasing":0,"rotate":15.7},{"duration":8,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":4,"value":-1},{"duration":26},{"duration":4,"value":-1}],"colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":2,"value":-1},{"duration":24},{"duration":8,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":10,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":2,"value":-1},{"duration":22},{"duration":10,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":34,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.52,"y":1.72},{"duration":3,"tweenEasing":0,"x":-0.66,"y":-0.23},{"duration":6,"tweenEasing":0,"x":3.25,"y":-1.37},{"duration":3,"x":4.8,"y":-6.29}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-10.13,"y":-1.13},{"duration":9,"tweenEasing":0,"x":-11.84,"y":-6.3},{"duration":0,"x":-24,"y":-16.3}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-3.68,"y":5.44},{"duration":3,"tweenEasing":0,"x":-0.76,"y":-7.24},{"duration":6,"tweenEasing":0,"x":1.84,"y":-9.36},{"duration":3,"x":6.56,"y":-13.6}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.72,"y":0.96},{"duration":3,"tweenEasing":0,"x":-6.04,"y":-7.24},{"duration":9,"tweenEasing":0,"x":-6.73,"y":-8.87},{"duration":0,"x":-9.44,"y":-13.76}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.15,"y":2.3},{"duration":9,"tweenEasing":0,"x":-3.52,"y":1.7},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.16,"y":1.05},{"duration":9,"tweenEasing":0,"x":-2.29,"y":0.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.98,"y":2.9},{"duration":9,"tweenEasing":0,"x":-2.31,"y":0.72},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.02,"y":0.27},{"duration":9,"tweenEasing":0,"x":-2.56,"y":-0.29},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.1,"y":1.19},{"duration":9,"tweenEasing":0,"x":0.4,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-1.64,"y":0.12},{"duration":9,"tweenEasing":0,"x":0.32,"y":-0.04},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.22,"y":-0.36},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":-2.48,"y":2.58},{"duration":9,"tweenEasing":0,"x":-1.94,"y":0.96},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":18,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":15,"tweenEasing":0,"x":3.2,"y":-5.14},{"duration":15,"tweenEasing":0,"x":4.23,"y":-11.54},{"duration":6,"x":0.57,"y":-16.23}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":15,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":18,"tweenEasing":0,"x":0.12,"y":-12.12},{"duration":18,"tweenEasing":0,"x":-4.34,"y":-19.77},{"duration":9,"x":-5.8,"y":-24.16}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":12,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":18,"tweenEasing":0,"x":-1.38,"y":-2.44},{"duration":12,"tweenEasing":0,"x":4.45,"y":-9.82},{"duration":9,"x":11.24,"y":-11.69}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":0.54,"y":-3.87},{"duration":15,"tweenEasing":0,"x":-6.54,"y":-10.13},{"duration":24,"x":-20.27,"y":-14.8}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":6,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":42,"x":-0.33,"y":-0.04}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":6,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":9,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":3,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":15,"tweenEasing":0,"x":0.15,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.83,"y":0.94},{"duration":6,"tweenEasing":0,"x":0.64,"y":-3.63},{"duration":12,"x":0.49,"y":-4.08}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.92,"y":0.22},{"duration":3,"tweenEasing":0,"x":3.65,"y":-0.2},{"duration":6,"tweenEasing":0,"x":3.65,"y":0.04},{"duration":9,"tweenEasing":0,"x":5.47,"y":0.93},{"duration":3,"tweenEasing":0,"x":5.34,"y":-0.94},{"duration":15,"tweenEasing":0,"x":-1,"y":-5.83},{"duration":9,"tweenEasing":0,"x":-4.61,"y":-8.44},{"duration":6,"tweenEasing":0,"x":-0.2,"y":19},{"duration":12,"tweenEasing":0,"x":-1.65,"y":17.16},{"duration":0,"x":-1.65,"y":18.77}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":3,"tweenEasing":0,"x":3.38,"y":-2.55},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":9,"tweenEasing":0,"x":6.04,"y":-0.88},{"duration":3,"tweenEasing":0,"x":5.92,"y":-2.75},{"duration":15,"tweenEasing":0,"x":0.43,"y":-5.91},{"duration":9,"tweenEasing":0,"x":1.24,"y":-0.91},{"duration":6,"tweenEasing":0,"x":1.44,"y":14.13},{"duration":12,"tweenEasing":0,"x":0.64,"y":12.94},{"duration":0,"x":0.8,"y":13.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":4.09,"y":3.06},{"duration":3,"tweenEasing":0,"x":3.85,"y":2.9},{"duration":6,"tweenEasing":0,"x":3.85,"y":3.14},{"duration":9,"tweenEasing":0,"x":4.46,"y":5.23},{"duration":3,"tweenEasing":0,"x":4.79,"y":5.7},{"duration":15,"tweenEasing":0,"x":-1.35,"y":-7.2},{"duration":9,"tweenEasing":0,"x":-0.62,"y":-11.06},{"duration":6,"tweenEasing":0,"x":-1.1,"y":18.3},{"duration":12,"tweenEasing":0,"x":-2.54,"y":16.94},{"duration":0,"x":0.02,"y":21.42}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":3,"tweenEasing":0,"x":3.03,"y":0.59},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":9,"tweenEasing":0,"x":3.4,"y":1.55},{"duration":3,"tweenEasing":0,"x":3.26,"y":-0.84},{"duration":15,"tweenEasing":0,"x":-2.59,"y":-8.54},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-6.93},{"duration":6,"tweenEasing":0,"x":-1.19,"y":16.3},{"duration":12,"tweenEasing":0,"x":-0.23,"y":16.86},{"duration":0,"x":-0.23,"y":19.27}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.09,"y":0.24},{"duration":3,"tweenEasing":0,"x":-0.17,"y":0.09},{"duration":6,"tweenEasing":0,"x":-0.17,"y":0.33},{"duration":9,"tweenEasing":0,"x":-0.09,"y":1.13},{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.74},{"duration":15,"tweenEasing":0,"x":1.18,"y":-7.26},{"duration":9,"tweenEasing":0,"x":1.65,"y":-4.2},{"duration":6,"tweenEasing":0,"x":4.98,"y":12.38},{"duration":12,"tweenEasing":0,"x":5.3,"y":9.58},{"duration":0,"x":5.46,"y":10.7}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.42},{"duration":9,"tweenEasing":0,"x":-0.42},{"duration":3,"tweenEasing":0,"x":-0.26,"y":-0.32},{"duration":15,"tweenEasing":0,"x":-0.26,"y":-1.92},{"duration":6,"tweenEasing":0,"x":-0.26,"y":-2.64},{"duration":21,"x":-0.26,"y":-1.76}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":6,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":27,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":9,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":18,"x":-0.52,"y":-0.81}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":6,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":12,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":15,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":9,"tweenEasing":0,"x":-1.47,"y":-1.53},{"duration":6,"tweenEasing":0,"x":-3.21,"y":1.78},{"duration":12,"tweenEasing":0,"x":-2.78,"y":2.31},{"duration":0,"x":-3.77,"y":2.53}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":6,"tweenEasing":0,"x":3.9,"y":0.71},{"duration":3,"tweenEasing":0,"x":3.42,"y":0.4},{"duration":6,"tweenEasing":0,"x":3.42,"y":0.64},{"duration":9,"tweenEasing":0,"x":3.25,"y":1.44},{"duration":3,"tweenEasing":0,"x":3.12,"y":-0.43},{"duration":15,"tweenEasing":0,"x":-0.94,"y":-5.88},{"duration":9,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":6,"tweenEasing":0,"x":-2.26,"y":21.07},{"duration":12,"tweenEasing":0,"x":-3.06,"y":19.87},{"duration":0,"x":-2.9,"y":20.67}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-3.65},{"duration":9,"tweenEasing":0,"y":-6.4},{"duration":6,"tweenEasing":0,"y":-6.4},{"duration":27,"x":0.4,"y":-20.8}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":18,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":21,"tweenEasing":0,"x":-8,"y":-5.07},{"duration":21,"tweenEasing":0,"x":-12.36,"y":-12.18},{"duration":9,"x":-12.27,"y":-18.84}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":24,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":21,"tweenEasing":0,"x":1.63,"y":-8.11},{"duration":18,"tweenEasing":0,"x":0.34,"y":-14.59},{"duration":0,"x":0.58,"y":-17.3}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":2,"y":-8.5},{"duration":24,"tweenEasing":0,"x":0.5,"y":-14.6},{"duration":3,"x":-0.1,"y":-19.9}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.3,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.06,"y":-0.8},{"duration":24,"tweenEasing":0,"x":2.73,"y":-0.64},{"duration":24,"tweenEasing":0,"x":3.04,"y":-0.99},{"duration":0,"x":2.06,"y":-0.8}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.54,"y":0.65},{"duration":0,"x":2.4,"y":0.46}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.1,"y":2.36},{"duration":24,"tweenEasing":0,"x":3.17,"y":2.85},{"duration":24,"tweenEasing":0,"x":3.07,"y":2.85},{"duration":0,"x":2.1,"y":2.36}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":1.72,"y":0.12},{"duration":24,"tweenEasing":0,"x":2.73,"y":0.63},{"duration":24,"tweenEasing":0,"x":2.71,"y":0.23},{"duration":0,"x":1.72,"y":0.12}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.12,"y":0.12},{"duration":24,"tweenEasing":0,"x":0.25,"y":-0.28},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.54,"y":1.45},{"duration":0,"x":3.28,"y":1.58}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.2,"y":-5.6},{"duration":24,"tweenEasing":0,"x":3.2,"y":-11.9},{"duration":0,"x":7,"y":-15.1}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-5.2,"y":-9.12},{"duration":21,"tweenEasing":0,"x":-5.04,"y":-16.4},{"duration":12,"x":-6.4,"y":-19.84}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.4,"y":-6.1},{"duration":24,"tweenEasing":0,"x":5.5,"y":-13.8},{"duration":24,"x":6.1,"y":-19.3}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":2.4,"y":-5.6},{"duration":18,"tweenEasing":0,"x":3.8,"y":-11.1},{"duration":9,"x":4.3,"y":-15.2}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-2.27,"y":-6.67},{"duration":18,"tweenEasing":0,"x":-1.74,"y":-10.54},{"duration":33,"x":-3.06,"y":-17.46}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":18,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.46},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":18,"tweenEasing":0,"x":-0.1,"y":-0.71},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.42,"y":-1.18},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":18,"tweenEasing":0,"x":-0.27,"y":-2.27},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.06,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.14,"y":0.3},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":-0.17},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.07},{"duration":9,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.3},{"duration":18,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":0,"x":-1.06,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.51,"y":-0.36},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.39},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":18,"tweenEasing":0,"x":0.86,"y":-1.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.16,"y":0.16},{"duration":9,"tweenEasing":0,"y":-0.49},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":9,"tweenEasing":0,"y":-0.73},{"duration":9,"tweenEasing":0,"y":-0.56},{"duration":9,"tweenEasing":0,"y":-0.97},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":18,"tweenEasing":0,"y":-1.05},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":18,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":18,"tweenEasing":0,"x":-0.2,"y":0.01},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":9,"tweenEasing":0,"x":0.76,"y":0.39},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.49},{"duration":18,"tweenEasing":0,"x":1.13,"y":-1.07},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":3.46,"y":-6.84},{"duration":0,"x":5.42,"y":-9.87}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4,"y":-3.31},{"duration":15,"tweenEasing":0,"x":-5.03,"y":-8.91},{"duration":9,"x":-5.37,"y":-12.35}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":3.88,"y":-6.4},{"duration":21,"tweenEasing":0,"x":6.75,"y":-10.97},{"duration":9,"x":6.51,"y":-13.37}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.4,"y":-7.87},{"duration":18,"tweenEasing":0,"x":3.13,"y":-14.13},{"duration":0,"x":3.67,"y":-17.86}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-2.32,"y":-5.92},{"duration":21,"tweenEasing":0,"x":-5.84,"y":-9.44},{"duration":6,"x":-7.52,"y":-12}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":24,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":24,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.1,"y":-0.99},{"duration":24,"tweenEasing":0,"x":0.18,"y":-0.92},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-0.69},{"duration":24,"tweenEasing":0,"y":-0.45},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.32,"y":-1.9},{"duration":24,"tweenEasing":0,"x":0.32,"y":-0.78},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-0.72},{"duration":24,"tweenEasing":0,"x":0.08,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.09,"y":0.52},{"duration":24,"tweenEasing":0,"x":-0.07,"y":0.13},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":21,"tweenEasing":0,"x":0.74,"y":0.46},{"duration":24,"tweenEasing":0,"x":1.06,"y":0.7},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json.meta b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json.meta index 613caa0..13ed19a 100644 --- a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json.meta +++ b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_ske.json.meta @@ -1,6 +1,6 @@ { "ver": "1.0.0", - "uuid": "a9d7bbc2-134b-4eb4-ba16-6541f3e51e06", - "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierWaterGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierWaterGhost\",\"aabb\":{\"x\":-34.2,\"y\":-91.74,\"width\":77.68,\"height\":94.31},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":13,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-11.2185,\"y\":-56.7863,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.2,\"y\":-46.0924,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":17,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":13.5908,\"y\":-53.6036,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":12.64,\"y\":-42.7787,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":11.5,\"y\":-54.7347}},{\"inheritScale\":false,\"length\":17,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.9105,\"y\":-2.8201,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":22,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":2.0039,\"y\":-24.7902,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":12,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":18.2082,\"y\":-52.6804,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":11,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":8.206,\"y\":-62.581,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":10,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-13.0118,\"y\":-53.6185,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-10.0286,\"y\":-56.4408,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-30.0572,\"y\":-33.1972,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":26.5689,\"y\":-30.0747}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":17.6467,\"y\":1.3208,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":14.7447,\"y\":3.5738,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":10.7292,\"y\":-5.7822,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":14.7808,\"y\":2.8582,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":10.63,\"y\":-0.15,\"skX\":85.72,\"skY\":85.72}}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":13.01,\"y\":-2.08,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":13.28,\"y\":-2.44,\"skX\":83.48,\"skY\":83.48}}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":6.29,\"y\":0.98,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":12.81,\"y\":-2.38,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":4.79,\"y\":-0.12,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":9.07,\"y\":-0.39,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":3.42,\"y\":-0.82,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":3.74,\"y\":-1.19,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":5.38,\"y\":-0.23,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":6.91,\"y\":0.09,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":4.09,\"y\":-0.34,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":44.16,\"y\":14.08},{\"duration\":12,\"tweenEasing\":0,\"x\":44.16,\"y\":14.08},{\"duration\":15,\"tweenEasing\":0,\"x\":31.04,\"y\":15.36},{\"duration\":15,\"tweenEasing\":0,\"x\":22.08,\"y\":-0.64},{\"duration\":6,\"x\":-10.24,\"y\":-23.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":7.36,\"y\":-2.48},{\"duration\":9,\"tweenEasing\":0,\"x\":7.36,\"y\":-2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":-2,\"y\":-15.76},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.48,\"y\":-20.48},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.64,\"y\":-36.8},{\"duration\":6,\"x\":-40.56,\"y\":-53.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-14.8,\"y\":25.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.8,\"y\":25.6},{\"duration\":18,\"tweenEasing\":0,\"x\":-29.2,\"y\":17.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-38,\"y\":9.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-56.4,\"y\":4.4},{\"duration\":3,\"x\":-68.8,\"y\":4}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":10.56,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":10.56,\"y\":11.2},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":1.6},{\"duration\":18,\"tweenEasing\":0,\"x\":-19.84,\"y\":3.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-29.76,\"y\":-6.72},{\"duration\":3,\"x\":-39.68,\"y\":-24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":1.19},{\"duration\":15,\"tweenEasing\":0,\"x\":0.46,\"y\":-1.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.33,\"y\":-2.07},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":5.76},{\"duration\":15,\"tweenEasing\":0,\"x\":5.14,\"y\":1.94},{\"duration\":15,\"tweenEasing\":0,\"x\":8.29,\"y\":-0.16},{\"duration\":15,\"tweenEasing\":0,\"x\":7.36,\"y\":2.19},{\"duration\":0,\"x\":5.76}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":3.84,\"y\":-0.96},{\"duration\":15,\"tweenEasing\":0,\"x\":7.18,\"y\":1.44},{\"duration\":15,\"tweenEasing\":0,\"x\":13.26,\"y\":3.09},{\"duration\":15,\"tweenEasing\":0,\"x\":11.89,\"y\":3.87},{\"duration\":0,\"x\":3.84,\"y\":-0.96}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":5.44,\"y\":1.28},{\"duration\":15,\"tweenEasing\":0,\"x\":4.96,\"y\":4.88},{\"duration\":15,\"tweenEasing\":0,\"x\":7.29,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":7.59,\"y\":5.42},{\"duration\":0,\"x\":5.44,\"y\":1.28}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":3.41,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":2.68},{\"duration\":15,\"tweenEasing\":0,\"x\":3.89,\"y\":0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":5.61,\"y\":3.87},{\"duration\":0,\"x\":3.41,\"y\":1.17}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":2.72},{\"duration\":15,\"tweenEasing\":0,\"x\":0.96,\"y\":-0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":1.42,\"y\":3.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.32},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.7},{\"duration\":15,\"tweenEasing\":0,\"x\":0.81,\"y\":-2.06},{\"duration\":15,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.1},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.1},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.08,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"y\":-2.64},{\"duration\":0,\"x\":-0.19,\"y\":-1.7}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":4.32,\"y\":4.08},{\"duration\":15,\"tweenEasing\":0,\"x\":4.96,\"y\":2.34},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.37,\"y\":-4.26},{\"duration\":15,\"tweenEasing\":0,\"x\":4.21,\"y\":3.38},{\"duration\":0,\"x\":4.32,\"y\":4.08}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":12,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":24,\"tweenEasing\":0,\"x\":22.4,\"y\":-63.2},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":12,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":24,\"tweenEasing\":0,\"x\":22.4,\"y\":-63.2},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":9,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":3,\"x\":22.4,\"y\":-63.2}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":15,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":21,\"tweenEasing\":0,\"x\":5.03,\"y\":-47.77},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":15,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":21,\"tweenEasing\":0,\"x\":5.03,\"y\":-47.77},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":12,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":6,\"x\":5.03,\"y\":-47.77}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":18,\"tweenEasing\":0,\"x\":-37.94,\"y\":-42.74},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":18,\"tweenEasing\":0,\"x\":-37.94,\"y\":-42.74},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":6,\"x\":-37.94,\"y\":-42.74}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":9,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.43,\"y\":-20.57},{\"duration\":15,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.43,\"y\":-20.57},{\"duration\":15,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":9,\"x\":-27.43,\"y\":-20.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":60,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":-18.2,\"y\":13.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-18.2,\"y\":13.4},{\"duration\":15,\"tweenEasing\":0,\"x\":-35.6,\"y\":3.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-48,\"y\":0.8},{\"duration\":9,\"x\":-61.2}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":9,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-29.33,\"y\":21.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-29.33,\"y\":21.33},{\"duration\":15,\"tweenEasing\":0,\"x\":-46.13,\"y\":12},{\"duration\":15,\"tweenEasing\":0,\"x\":-53.87,\"y\":18.93},{\"duration\":15,\"x\":-62.13,\"y\":14.67}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":15,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-9.07,\"y\":26.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-9.07,\"y\":26.4},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.2,\"y\":5.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-46.93,\"y\":-8.53},{\"duration\":18,\"x\":-54.93,\"y\":-10.93}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":18,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":12,\"tweenEasing\":0,\"x\":0.21,\"y\":0.98},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":12,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.43,\"y\":0.09},{\"duration\":12,\"tweenEasing\":0,\"x\":0.37,\"y\":0.24},{\"duration\":15,\"tweenEasing\":0,\"x\":1.38,\"y\":-1.56},{\"duration\":12,\"tweenEasing\":0,\"x\":0.39,\"y\":0.48},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":12,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":12,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.77,\"y\":-1.21},{\"duration\":12,\"tweenEasing\":0,\"x\":16.81,\"y\":-1.49},{\"duration\":15,\"tweenEasing\":0,\"x\":16.01,\"y\":-1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":2.27,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":40},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":15,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.85,\"y\":-3.89},{\"duration\":12,\"tweenEasing\":0,\"x\":25.9,\"y\":0.2},{\"duration\":15,\"tweenEasing\":0,\"x\":24.94,\"y\":0.84},{\"duration\":12,\"tweenEasing\":0,\"x\":2.99,\"y\":-4.37},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.35,\"y\":0.91},{\"duration\":12,\"tweenEasing\":0,\"x\":18.7,\"y\":3.66},{\"duration\":15,\"tweenEasing\":0,\"x\":17.58,\"y\":4.46},{\"duration\":12,\"tweenEasing\":0,\"x\":2.45,\"y\":1.81},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.25,\"y\":-1.47},{\"duration\":12,\"tweenEasing\":0,\"x\":12.57,\"y\":4.07},{\"duration\":15,\"tweenEasing\":0,\"x\":12.25,\"y\":4.55},{\"duration\":12,\"tweenEasing\":0,\"x\":0.8,\"y\":0.69},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":12,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.93,\"y\":-2.03},{\"duration\":12,\"tweenEasing\":0,\"x\":2.55,\"y\":-0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":2.87,\"y\":0.46},{\"duration\":12,\"tweenEasing\":0,\"y\":0.8},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":12,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":12,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":12,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-0.39},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-0.39},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.08,\"y\":-0.33},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.4,\"y\":0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.68,\"y\":0.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.88,\"y\":0.14},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":0.51},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.92,\"y\":-0.64},{\"duration\":12,\"tweenEasing\":0,\"x\":2.79,\"y\":7.74},{\"duration\":15,\"tweenEasing\":0,\"x\":2.95,\"y\":8.38},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.65,\"y\":-6.15},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":12,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":12,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":42},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":42},{\"duration\":12,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":39},{\"duration\":15,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-5.03,\"y\":3.43},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":6.49,\"y\":-2.74},{\"duration\":3,\"x\":9.6,\"y\":-12.57}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9,\"y\":7.6},{\"duration\":3,\"tweenEasing\":0,\"x\":-9,\"y\":7.6},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.26,\"y\":-2.26},{\"duration\":9,\"tweenEasing\":0,\"x\":-23.68,\"y\":-12.6},{\"duration\":0,\"x\":-48,\"y\":-32.6}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.36,\"y\":10.88},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.52,\"y\":-14.48},{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-18.72},{\"duration\":3,\"x\":13.12,\"y\":-27.2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":5.44,\"y\":1.92},{\"duration\":3,\"tweenEasing\":0,\"x\":-12.08,\"y\":-14.48},{\"duration\":9,\"tweenEasing\":0,\"x\":-13.46,\"y\":-17.74},{\"duration\":0,\"x\":-18.88,\"y\":-27.52}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.31,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-7.03,\"y\":3.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.32,\"y\":2.11},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.59,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.95,\"y\":5.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":1.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.05,\"y\":0.53},{\"duration\":9,\"tweenEasing\":0,\"x\":-5.11,\"y\":-0.59},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.19,\"y\":2.37},{\"duration\":9,\"tweenEasing\":0,\"x\":0.8,\"y\":1.76},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.28,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.64,\"y\":-0.08},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.44,\"y\":-0.72},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.96,\"y\":5.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.87,\"y\":1.92},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":14.4,\"y\":3.43},{\"duration\":18,\"tweenEasing\":0,\"x\":14.4,\"y\":3.43},{\"duration\":15,\"tweenEasing\":0,\"x\":6.4,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":8.46,\"y\":-23.09},{\"duration\":6,\"x\":1.14,\"y\":-32.46}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-3.2,\"y\":1.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":1.6},{\"duration\":18,\"tweenEasing\":0,\"x\":0.23,\"y\":-24.23},{\"duration\":18,\"tweenEasing\":0,\"x\":-8.69,\"y\":-39.54},{\"duration\":9,\"x\":-11.61,\"y\":-48.32}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-6.13,\"y\":22.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.13,\"y\":22.4},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.76,\"y\":-4.89},{\"duration\":12,\"tweenEasing\":0,\"x\":8.89,\"y\":-19.64},{\"duration\":9,\"x\":22.49,\"y\":-23.38}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":4,\"y\":6.13},{\"duration\":9,\"tweenEasing\":0,\"x\":4,\"y\":6.13},{\"duration\":9,\"tweenEasing\":0,\"x\":1.07,\"y\":-7.73},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.07,\"y\":-20.27},{\"duration\":24,\"x\":-40.53,\"y\":-29.6}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":6,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":9,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.43},{\"duration\":3,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.43},{\"duration\":42,\"x\":-0.66,\"y\":-0.09}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.36,\"y\":-1.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.36,\"y\":-1.9},{\"duration\":9,\"tweenEasing\":0,\"x\":1.29,\"y\":-2.29},{\"duration\":3,\"tweenEasing\":0,\"x\":1.29,\"y\":-2.29},{\"duration\":15,\"tweenEasing\":0,\"x\":0.3,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.66,\"y\":1.87},{\"duration\":6,\"tweenEasing\":0,\"x\":1.28,\"y\":-7.25},{\"duration\":12,\"x\":0.98,\"y\":-8.17}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":7.84,\"y\":0.44},{\"duration\":3,\"tweenEasing\":0,\"x\":7.31,\"y\":-0.39},{\"duration\":6,\"tweenEasing\":0,\"x\":7.31,\"y\":0.09},{\"duration\":9,\"tweenEasing\":0,\"x\":10.95,\"y\":1.85},{\"duration\":3,\"tweenEasing\":0,\"x\":10.69,\"y\":-1.88},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.01,\"y\":-11.67},{\"duration\":9,\"tweenEasing\":0,\"x\":-9.21,\"y\":-16.87},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.41,\"y\":38.01},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.29,\"y\":34.33},{\"duration\":0,\"x\":-3.29,\"y\":37.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":6.76,\"y\":-4.62},{\"duration\":3,\"tweenEasing\":0,\"x\":6.76,\"y\":-5.1},{\"duration\":6,\"tweenEasing\":0,\"x\":6.76,\"y\":-4.62},{\"duration\":9,\"tweenEasing\":0,\"x\":12.09,\"y\":-1.76},{\"duration\":3,\"tweenEasing\":0,\"x\":11.83,\"y\":-5.49},{\"duration\":15,\"tweenEasing\":0,\"x\":0.87,\"y\":-11.81},{\"duration\":9,\"tweenEasing\":0,\"x\":2.47,\"y\":-1.81},{\"duration\":6,\"tweenEasing\":0,\"x\":2.87,\"y\":28.27},{\"duration\":12,\"tweenEasing\":0,\"x\":1.27,\"y\":25.87},{\"duration\":0,\"x\":1.59,\"y\":27.47}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":8.19,\"y\":6.12},{\"duration\":3,\"tweenEasing\":0,\"x\":7.71,\"y\":5.8},{\"duration\":6,\"tweenEasing\":0,\"x\":7.71,\"y\":6.28},{\"duration\":9,\"tweenEasing\":0,\"x\":8.92,\"y\":10.46},{\"duration\":3,\"tweenEasing\":0,\"x\":9.58,\"y\":11.39},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.71,\"y\":-14.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.24,\"y\":-22.13},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.2,\"y\":36.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-5.08,\"y\":33.88},{\"duration\":0,\"x\":0.04,\"y\":42.84}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":6.06,\"y\":1.67},{\"duration\":3,\"tweenEasing\":0,\"x\":6.06,\"y\":1.19},{\"duration\":6,\"tweenEasing\":0,\"x\":6.06,\"y\":1.67},{\"duration\":9,\"tweenEasing\":0,\"x\":6.79,\"y\":3.11},{\"duration\":3,\"tweenEasing\":0,\"x\":6.52,\"y\":-1.69},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.18,\"y\":-17.07},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.38,\"y\":-13.87},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.38,\"y\":32.61},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.46,\"y\":33.73},{\"duration\":0,\"x\":-0.46,\"y\":38.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.65},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.18,\"y\":2.25},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":-1.48},{\"duration\":15,\"tweenEasing\":0,\"x\":2.36,\"y\":-14.52},{\"duration\":9,\"tweenEasing\":0,\"x\":3.29,\"y\":-8.39},{\"duration\":6,\"tweenEasing\":0,\"x\":9.96,\"y\":24.76},{\"duration\":12,\"tweenEasing\":0,\"x\":10.6,\"y\":19.16},{\"duration\":0,\"x\":10.92,\"y\":21.4}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.84},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.52,\"y\":-0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.52,\"y\":-3.84},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.52,\"y\":-5.28},{\"duration\":21,\"x\":-0.52,\"y\":-3.52}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":27,\"tweenEasing\":0,\"x\":-2.24,\"y\":-1.59},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.24,\"y\":-1.59},{\"duration\":18,\"x\":-1.03,\"y\":-1.63}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.29},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.29},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.93,\"y\":-3.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-6.42,\"y\":3.56},{\"duration\":12,\"tweenEasing\":0,\"x\":-5.56,\"y\":4.61},{\"duration\":0,\"x\":-7.53,\"y\":5.06}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":6,\"tweenEasing\":0,\"x\":7.79,\"y\":1.43},{\"duration\":3,\"tweenEasing\":0,\"x\":6.83,\"y\":0.79},{\"duration\":6,\"tweenEasing\":0,\"x\":6.83,\"y\":1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":6.51,\"y\":2.87},{\"duration\":3,\"tweenEasing\":0,\"x\":6.24,\"y\":-0.86},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.89,\"y\":-11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":0.11,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.52,\"y\":42.14},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.12,\"y\":39.74},{\"duration\":0,\"x\":-5.8,\"y\":41.34}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-7.31},{\"duration\":9,\"tweenEasing\":0,\"y\":-12.8},{\"duration\":6,\"tweenEasing\":0,\"y\":-12.8},{\"duration\":27,\"x\":0.8,\"y\":-41.6}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-18.49,\"y\":6.76},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.49,\"y\":6.76},{\"duration\":21,\"tweenEasing\":0,\"x\":-16,\"y\":-10.13},{\"duration\":21,\"tweenEasing\":0,\"x\":-24.71,\"y\":-24.36},{\"duration\":9,\"x\":-24.53,\"y\":-37.69}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-1.87,\"y\":10.67},{\"duration\":24,\"tweenEasing\":0,\"x\":-1.87,\"y\":10.67},{\"duration\":21,\"tweenEasing\":0,\"x\":3.25,\"y\":-16.21},{\"duration\":18,\"tweenEasing\":0,\"x\":0.69,\"y\":-29.17},{\"duration\":0,\"x\":1.17,\"y\":-34.61}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":4,\"y\":-17},{\"duration\":24,\"tweenEasing\":0,\"x\":1,\"y\":-29.2},{\"duration\":3,\"x\":-0.2,\"y\":-39.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.6,\"y\":0.39},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.11,\"y\":-1.6},{\"duration\":24,\"tweenEasing\":0,\"x\":5.47,\"y\":-1.28},{\"duration\":24,\"tweenEasing\":0,\"x\":6.08,\"y\":-1.98},{\"duration\":0,\"x\":4.11,\"y\":-1.6}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.8,\"y\":0.91},{\"duration\":24,\"tweenEasing\":0,\"x\":4.8,\"y\":0.91},{\"duration\":24,\"tweenEasing\":0,\"x\":5.07,\"y\":1.29},{\"duration\":0,\"x\":4.8,\"y\":0.91}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.19,\"y\":4.72},{\"duration\":24,\"tweenEasing\":0,\"x\":6.33,\"y\":5.71},{\"duration\":24,\"tweenEasing\":0,\"x\":6.14,\"y\":5.69},{\"duration\":0,\"x\":4.19,\"y\":4.72}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.43,\"y\":0.23},{\"duration\":24,\"tweenEasing\":0,\"x\":5.46,\"y\":1.26},{\"duration\":24,\"tweenEasing\":0,\"x\":5.41,\"y\":0.45},{\"duration\":0,\"x\":3.43,\"y\":0.23}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.23,\"y\":0.23},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-0.57},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":6.56,\"y\":3.17},{\"duration\":24,\"tweenEasing\":0,\"x\":6.56,\"y\":3.17},{\"duration\":24,\"tweenEasing\":0,\"x\":7.09,\"y\":2.9},{\"duration\":0,\"x\":6.56,\"y\":3.17}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":6.4,\"y\":-11.2},{\"duration\":24,\"tweenEasing\":0,\"x\":6.4,\"y\":-23.8},{\"duration\":0,\"x\":14,\"y\":-30.2}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-10.4,\"y\":-18.24},{\"duration\":21,\"tweenEasing\":0,\"x\":-10.08,\"y\":-32.8},{\"duration\":12,\"x\":-12.8,\"y\":-39.68}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":8.8,\"y\":-12.2},{\"duration\":24,\"tweenEasing\":0,\"x\":11,\"y\":-27.6},{\"duration\":24,\"x\":12.2,\"y\":-38.6}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.8,\"y\":-11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":7.6,\"y\":-22.2},{\"duration\":9,\"x\":8.6,\"y\":-30.4}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.53,\"y\":-13.33},{\"duration\":18,\"tweenEasing\":0,\"x\":-3.47,\"y\":-21.07},{\"duration\":33,\"x\":-6.13,\"y\":-34.93}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.31,\"y\":-0.92},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.43},{\"duration\":0,\"x\":-2.4,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.35},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.55},{\"duration\":0,\"x\":-2.4,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.13,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.29,\"y\":0.61},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-1.49},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-0.35},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-1.49},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":0.13},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-2.13},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":0.61},{\"duration\":18,\"tweenEasing\":0,\"x\":0.57,\"y\":-2.13},{\"duration\":0,\"x\":-2.13,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":-0.72},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.61},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.61},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":18,\"tweenEasing\":0,\"x\":1.72,\"y\":-3.73},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.32,\"y\":0.32},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.99},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.96},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.47},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.12},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.95},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.96},{\"duration\":18,\"tweenEasing\":0,\"y\":-2.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.12},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.12},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.41,\"y\":0.01},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":9,\"tweenEasing\":0,\"x\":1.52,\"y\":0.77},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.51},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.51},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.99},{\"duration\":18,\"tweenEasing\":0,\"x\":2.26,\"y\":-2.14},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":6.93,\"y\":-13.69},{\"duration\":0,\"x\":10.84,\"y\":-19.73}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-8,\"y\":-6.63},{\"duration\":15,\"tweenEasing\":0,\"x\":-10.06,\"y\":-17.83},{\"duration\":9,\"x\":-10.74,\"y\":-24.69}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":7.77,\"y\":-12.8},{\"duration\":21,\"tweenEasing\":0,\"x\":13.49,\"y\":-21.94},{\"duration\":9,\"x\":13.03,\"y\":-26.74}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":6.8,\"y\":-15.73},{\"duration\":18,\"tweenEasing\":0,\"x\":6.27,\"y\":-28.27},{\"duration\":0,\"x\":7.33,\"y\":-35.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.64,\"y\":-11.84},{\"duration\":21,\"tweenEasing\":0,\"x\":-11.68,\"y\":-18.88},{\"duration\":6,\"x\":-15.04,\"y\":-24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.58,\"y\":0.86},{\"duration\":24,\"tweenEasing\":0,\"x\":0.58,\"y\":0.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-1.12},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.16,\"y\":-1.12},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.2,\"y\":-1.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.36,\"y\":-1.83},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.32,\"y\":-1.37},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.89},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.79},{\"duration\":24,\"tweenEasing\":0,\"x\":0.64,\"y\":-1.55},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-1.44},{\"duration\":24,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.64},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.17,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.26},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":21,\"tweenEasing\":0,\"x\":1.49,\"y\":0.92},{\"duration\":24,\"tweenEasing\":0,\"x\":2.13,\"y\":1.4},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Walking\"}]}]}", + "uuid": "2ae76843-1f61-48cf-bbfb-384c0dcf77e1", + "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierWaterGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierWaterGhost\",\"aabb\":{\"x\":-17.1,\"y\":-45.87,\"width\":38.84,\"height\":47.16},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":6.5,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-5.60925,\"y\":-28.39315,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.1,\"y\":-23.0462,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":6.7954,\"y\":-26.8018,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":6.32,\"y\":-21.38935,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":5.75,\"y\":-27.36735}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.45525,\"y\":-1.41005,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":11,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":1.00195,\"y\":-12.3951,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":6,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":9.1041,\"y\":-26.3402,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":5.5,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":4.103,\"y\":-31.2905,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":5,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-6.5059,\"y\":-26.80925,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-5.0143,\"y\":-28.2204,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-15.0286,\"y\":-16.5986,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":13.28445,\"y\":-15.03735}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":8.82335,\"y\":0.6604,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":7.37235,\"y\":1.7869,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":5.3646,\"y\":-2.8911,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":7.3904,\"y\":1.4291,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":3.46,\"y\":0.04,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":6.41,\"y\":-1.19,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":1.87,\"y\":-0.59,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":1.71,\"y\":-0.41,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":2.04,\"y\":-0.17,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":4.54,\"y\":-0.2,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":5.32,\"y\":-0.07,\"skX\":85.72,\"skY\":85.72}}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":2.69,\"y\":-0.12,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":3.15,\"y\":0.49,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":2.4,\"y\":-0.06,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":6.5,\"y\":-1.04,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":6.64,\"y\":-1.22,\"skX\":83.48,\"skY\":83.48}}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":15,\"tweenEasing\":0,\"x\":15.52,\"y\":7.68},{\"duration\":15,\"tweenEasing\":0,\"x\":11.04,\"y\":-0.32},{\"duration\":6,\"x\":-5.12,\"y\":-11.68}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-7.88},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.24,\"y\":-10.24},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.32,\"y\":-18.4},{\"duration\":6,\"x\":-20.28,\"y\":-26.52}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-14.6,\"y\":8.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-19,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-28.2,\"y\":2.2},{\"duration\":3,\"x\":-34.4,\"y\":2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.8,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.92,\"y\":1.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-14.88,\"y\":-3.36},{\"duration\":3,\"x\":-19.84,\"y\":-12}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.07,\"y\":0.59},{\"duration\":15,\"tweenEasing\":0,\"x\":0.23,\"y\":-0.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.17,\"y\":-1.03},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.88},{\"duration\":15,\"tweenEasing\":0,\"x\":2.57,\"y\":0.97},{\"duration\":15,\"tweenEasing\":0,\"x\":4.14,\"y\":-0.08},{\"duration\":15,\"tweenEasing\":0,\"x\":3.68,\"y\":1.09},{\"duration\":0,\"x\":2.88}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.92,\"y\":-0.48},{\"duration\":15,\"tweenEasing\":0,\"x\":3.59,\"y\":0.72},{\"duration\":15,\"tweenEasing\":0,\"x\":6.63,\"y\":1.54},{\"duration\":15,\"tweenEasing\":0,\"x\":5.95,\"y\":1.94},{\"duration\":0,\"x\":1.92,\"y\":-0.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.72,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":2.44},{\"duration\":15,\"tweenEasing\":0,\"x\":3.65,\"y\":0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":3.79,\"y\":2.71},{\"duration\":0,\"x\":2.72,\"y\":0.64}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":0.58},{\"duration\":15,\"tweenEasing\":0,\"x\":0.85,\"y\":1.34},{\"duration\":15,\"tweenEasing\":0,\"x\":1.95,\"y\":0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":2.81,\"y\":1.94},{\"duration\":0,\"x\":1.71,\"y\":0.58}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":1.36},{\"duration\":15,\"tweenEasing\":0,\"x\":0.48,\"y\":-0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":0.71,\"y\":1.67},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":12,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.16},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.85},{\"duration\":15,\"tweenEasing\":0,\"x\":0.41,\"y\":-1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.04,\"y\":-1.27},{\"duration\":6,\"tweenEasing\":0,\"y\":-1.32},{\"duration\":0,\"x\":-0.1,\"y\":-0.85}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.16,\"y\":2.04},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.18,\"y\":-2.13},{\"duration\":15,\"tweenEasing\":0,\"x\":2.1,\"y\":1.69},{\"duration\":0,\"x\":2.16,\"y\":2.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":3,\"x\":11.2,\"y\":-31.6}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":6,\"x\":2.52,\"y\":-23.89}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":6,\"x\":-18.97,\"y\":-21.37}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":9,\"x\":-13.71,\"y\":-10.29}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":34,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-17.8,\"y\":1.8},{\"duration\":8,\"tweenEasing\":0,\"x\":-24,\"y\":0.4},{\"duration\":6,\"x\":-30.6}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":6,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":4,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":10,\"tweenEasing\":0,\"x\":-23.07,\"y\":6},{\"duration\":8,\"tweenEasing\":0,\"x\":-26.93,\"y\":9.46},{\"duration\":10,\"x\":-31.07,\"y\":7.33}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":10,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":10,\"tweenEasing\":0,\"x\":-13.6,\"y\":2.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-23.46,\"y\":-4.26},{\"duration\":12,\"x\":-27.46,\"y\":-5.46}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":12,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.1,\"y\":0.49},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":8,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.71,\"y\":0.04},{\"duration\":8,\"tweenEasing\":0,\"x\":0.18,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":0.69,\"y\":-0.78},{\"duration\":8,\"tweenEasing\":0,\"x\":0.2,\"y\":0.24},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":8,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":8,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.88,\"y\":-0.6},{\"duration\":8,\"tweenEasing\":0,\"x\":8.4,\"y\":-0.74},{\"duration\":8,\"tweenEasing\":0,\"x\":8.01,\"y\":-0.58},{\"duration\":8,\"tweenEasing\":0,\"x\":1.14,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":40},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":8,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":8,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.42,\"y\":-1.95},{\"duration\":8,\"tweenEasing\":0,\"x\":12.95,\"y\":0.1},{\"duration\":8,\"tweenEasing\":0,\"x\":12.47,\"y\":0.42},{\"duration\":8,\"tweenEasing\":0,\"x\":1.5,\"y\":-2.19},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-4.17,\"y\":0.46},{\"duration\":8,\"tweenEasing\":0,\"x\":9.35,\"y\":1.83},{\"duration\":8,\"tweenEasing\":0,\"x\":8.79,\"y\":2.23},{\"duration\":8,\"tweenEasing\":0,\"x\":1.23,\"y\":0.91},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.63,\"y\":-0.73},{\"duration\":8,\"tweenEasing\":0,\"x\":6.29,\"y\":2.04},{\"duration\":8,\"tweenEasing\":0,\"x\":6.13,\"y\":2.27},{\"duration\":8,\"tweenEasing\":0,\"x\":0.4,\"y\":0.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":8,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.01},{\"duration\":8,\"tweenEasing\":0,\"x\":1.27,\"y\":-0.09},{\"duration\":8,\"tweenEasing\":0,\"x\":1.44,\"y\":0.23},{\"duration\":8,\"tweenEasing\":0,\"y\":0.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":8,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":14,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":0}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.54,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.7,\"y\":0.18},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.31,\"y\":0.26},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.96,\"y\":-0.32},{\"duration\":8,\"tweenEasing\":0,\"x\":1.4,\"y\":3.87},{\"duration\":8,\"tweenEasing\":0,\"x\":1.48,\"y\":4.19},{\"duration\":8,\"tweenEasing\":0,\"x\":-3.83,\"y\":-3.08},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":8,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":4,\"value\":-1},{\"duration\":26},{\"duration\":4,\"value\":-1}],\"colorFrame\":[{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":24},{\"duration\":8,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":10,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":22},{\"duration\":10,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.52,\"y\":1.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":3.25,\"y\":-1.37},{\"duration\":3,\"x\":4.8,\"y\":-6.29}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.13,\"y\":-1.13},{\"duration\":9,\"tweenEasing\":0,\"x\":-11.84,\"y\":-6.3},{\"duration\":0,\"x\":-24,\"y\":-16.3}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-3.68,\"y\":5.44},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.76,\"y\":-7.24},{\"duration\":6,\"tweenEasing\":0,\"x\":1.84,\"y\":-9.36},{\"duration\":3,\"x\":6.56,\"y\":-13.6}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.72,\"y\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.04,\"y\":-7.24},{\"duration\":9,\"tweenEasing\":0,\"x\":-6.73,\"y\":-8.87},{\"duration\":0,\"x\":-9.44,\"y\":-13.76}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.15,\"y\":2.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.52,\"y\":1.7},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.16,\"y\":1.05},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.29,\"y\":0.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.98,\"y\":2.9},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.31,\"y\":0.72},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.56,\"y\":-0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":1.19},{\"duration\":9,\"tweenEasing\":0,\"x\":0.4,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.64,\"y\":0.12},{\"duration\":9,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.04},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.22,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.48,\"y\":2.58},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.94,\"y\":0.96},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":18,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":15,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.14},{\"duration\":15,\"tweenEasing\":0,\"x\":4.23,\"y\":-11.54},{\"duration\":6,\"x\":0.57,\"y\":-16.23}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":0.12,\"y\":-12.12},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.34,\"y\":-19.77},{\"duration\":9,\"x\":-5.8,\"y\":-24.16}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.38,\"y\":-2.44},{\"duration\":12,\"tweenEasing\":0,\"x\":4.45,\"y\":-9.82},{\"duration\":9,\"x\":11.24,\"y\":-11.69}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.54,\"y\":-3.87},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.54,\"y\":-10.13},{\"duration\":24,\"x\":-20.27,\"y\":-14.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":42,\"x\":-0.33,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":6,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":9,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.83,\"y\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.63},{\"duration\":12,\"x\":0.49,\"y\":-4.08}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.92,\"y\":0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":3.65,\"y\":-0.2},{\"duration\":6,\"tweenEasing\":0,\"x\":3.65,\"y\":0.04},{\"duration\":9,\"tweenEasing\":0,\"x\":5.47,\"y\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":5.34,\"y\":-0.94},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-5.83},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":-8.44},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.2,\"y\":19},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.65,\"y\":17.16},{\"duration\":0,\"x\":-1.65,\"y\":18.77}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":3,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":9,\"tweenEasing\":0,\"x\":6.04,\"y\":-0.88},{\"duration\":3,\"tweenEasing\":0,\"x\":5.92,\"y\":-2.75},{\"duration\":15,\"tweenEasing\":0,\"x\":0.43,\"y\":-5.91},{\"duration\":9,\"tweenEasing\":0,\"x\":1.24,\"y\":-0.91},{\"duration\":6,\"tweenEasing\":0,\"x\":1.44,\"y\":14.13},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64,\"y\":12.94},{\"duration\":0,\"x\":0.8,\"y\":13.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":4.09,\"y\":3.06},{\"duration\":3,\"tweenEasing\":0,\"x\":3.85,\"y\":2.9},{\"duration\":6,\"tweenEasing\":0,\"x\":3.85,\"y\":3.14},{\"duration\":9,\"tweenEasing\":0,\"x\":4.46,\"y\":5.23},{\"duration\":3,\"tweenEasing\":0,\"x\":4.79,\"y\":5.7},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.35,\"y\":-7.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.62,\"y\":-11.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.1,\"y\":18.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.54,\"y\":16.94},{\"duration\":0,\"x\":0.02,\"y\":21.42}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":3.03,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":9,\"tweenEasing\":0,\"x\":3.4,\"y\":1.55},{\"duration\":3,\"tweenEasing\":0,\"x\":3.26,\"y\":-0.84},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.59,\"y\":-8.54},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-6.93},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.19,\"y\":16.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.23,\"y\":16.86},{\"duration\":0,\"x\":-0.23,\"y\":19.27}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.09,\"y\":1.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.74},{\"duration\":15,\"tweenEasing\":0,\"x\":1.18,\"y\":-7.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.65,\"y\":-4.2},{\"duration\":6,\"tweenEasing\":0,\"x\":4.98,\"y\":12.38},{\"duration\":12,\"tweenEasing\":0,\"x\":5.3,\"y\":9.58},{\"duration\":0,\"x\":5.46,\"y\":10.7}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.26,\"y\":-1.92},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.26,\"y\":-2.64},{\"duration\":21,\"x\":-0.26,\"y\":-1.76}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":27,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":18,\"x\":-0.52,\"y\":-0.81}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.53},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.21,\"y\":1.78},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.78,\"y\":2.31},{\"duration\":0,\"x\":-3.77,\"y\":2.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":6,\"tweenEasing\":0,\"x\":3.9,\"y\":0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":3.42,\"y\":0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":3.42,\"y\":0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":3.25,\"y\":1.44},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.94,\"y\":-5.88},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.26,\"y\":21.07},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":19.87},{\"duration\":0,\"x\":-2.9,\"y\":20.67}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-3.65},{\"duration\":9,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":6,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":27,\"x\":0.4,\"y\":-20.8}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":21,\"tweenEasing\":0,\"x\":-8,\"y\":-5.07},{\"duration\":21,\"tweenEasing\":0,\"x\":-12.36,\"y\":-12.18},{\"duration\":9,\"x\":-12.27,\"y\":-18.84}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":21,\"tweenEasing\":0,\"x\":1.63,\"y\":-8.11},{\"duration\":18,\"tweenEasing\":0,\"x\":0.34,\"y\":-14.59},{\"duration\":0,\"x\":0.58,\"y\":-17.3}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":2,\"y\":-8.5},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-14.6},{\"duration\":3,\"x\":-0.1,\"y\":-19.9}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.06,\"y\":-0.8},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":-0.64},{\"duration\":24,\"tweenEasing\":0,\"x\":3.04,\"y\":-0.99},{\"duration\":0,\"x\":2.06,\"y\":-0.8}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.54,\"y\":0.65},{\"duration\":0,\"x\":2.4,\"y\":0.46}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.1,\"y\":2.36},{\"duration\":24,\"tweenEasing\":0,\"x\":3.17,\"y\":2.85},{\"duration\":24,\"tweenEasing\":0,\"x\":3.07,\"y\":2.85},{\"duration\":0,\"x\":2.1,\"y\":2.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":1.72,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":0.63},{\"duration\":24,\"tweenEasing\":0,\"x\":2.71,\"y\":0.23},{\"duration\":0,\"x\":1.72,\"y\":0.12}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.12,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.54,\"y\":1.45},{\"duration\":0,\"x\":3.28,\"y\":1.58}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.6},{\"duration\":24,\"tweenEasing\":0,\"x\":3.2,\"y\":-11.9},{\"duration\":0,\"x\":7,\"y\":-15.1}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.2,\"y\":-9.12},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.04,\"y\":-16.4},{\"duration\":12,\"x\":-6.4,\"y\":-19.84}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.4,\"y\":-6.1},{\"duration\":24,\"tweenEasing\":0,\"x\":5.5,\"y\":-13.8},{\"duration\":24,\"x\":6.1,\"y\":-19.3}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":2.4,\"y\":-5.6},{\"duration\":18,\"tweenEasing\":0,\"x\":3.8,\"y\":-11.1},{\"duration\":9,\"x\":4.3,\"y\":-15.2}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.27,\"y\":-6.67},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.74,\"y\":-10.54},{\"duration\":33,\"x\":-3.06,\"y\":-17.46}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.46},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.71},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42,\"y\":-1.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.27},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.14,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.17},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.07},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.3},{\"duration\":18,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":0,\"x\":-1.06,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.51,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.39},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.16},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.49},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.73},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.56},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":18,\"tweenEasing\":0,\"y\":-1.05},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.01},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.76,\"y\":0.39},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.49},{\"duration\":18,\"tweenEasing\":0,\"x\":1.13,\"y\":-1.07},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":3.46,\"y\":-6.84},{\"duration\":0,\"x\":5.42,\"y\":-9.87}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4,\"y\":-3.31},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.03,\"y\":-8.91},{\"duration\":9,\"x\":-5.37,\"y\":-12.35}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":3.88,\"y\":-6.4},{\"duration\":21,\"tweenEasing\":0,\"x\":6.75,\"y\":-10.97},{\"duration\":9,\"x\":6.51,\"y\":-13.37}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.4,\"y\":-7.87},{\"duration\":18,\"tweenEasing\":0,\"x\":3.13,\"y\":-14.13},{\"duration\":0,\"x\":3.67,\"y\":-17.86}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.32,\"y\":-5.92},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.84,\"y\":-9.44},{\"duration\":6,\"x\":-7.52,\"y\":-12}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":24,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.18,\"y\":-0.92},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.69},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.45},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.32,\"y\":-1.9},{\"duration\":24,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.78},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-0.72},{\"duration\":24,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.52},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.07,\"y\":0.13},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":21,\"tweenEasing\":0,\"x\":0.74,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":1.06,\"y\":0.7},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.json b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.json index 4bfb89c..8657e92 100644 --- a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.json +++ b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.json @@ -1 +1 @@ -{"SubTexture":[{"y":50,"frameX":-2,"frameY":-2,"width":19,"frameWidth":23,"height":19,"name":"biu","frameHeight":22,"x":1},{"width":9,"y":50,"height":14,"name":"rightArm","x":42},{"y":34,"frameX":-6,"frameY":0,"width":20,"frameWidth":29,"height":32,"name":"yinmoqe00","frameHeight":32,"x":88},{"y":1,"frameX":0,"frameY":0,"width":33,"frameWidth":34,"height":39,"name":"body","frameHeight":41,"x":53},{"width":9,"y":56,"height":13,"name":"rightShoulder","x":74},{"y":50,"frameX":0,"frameY":0,"width":18,"frameWidth":19,"height":17,"name":"rightFrontArm","frameHeight":18,"x":22},{"width":14,"y":50,"height":14,"name":"rightHand","x":110},{"width":12,"y":42,"height":12,"name":"leftArm","x":74},{"width":13,"y":66,"height":12,"name":"leftShoulder","x":110},{"y":42,"frameX":-1,"frameY":0,"width":19,"frameWidth":20,"height":21,"name":"leftFrontArm","frameHeight":21,"x":53},{"width":50,"y":1,"height":47,"name":"head2","x":1},{"y":1,"frameX":-1,"frameY":0,"width":32,"frameWidth":33,"height":31,"name":"head","frameHeight":32,"x":88},{"width":16,"y":34,"height":14,"name":"leftHand","x":110},{"y":1,"frameX":-2,"frameY":-3,"width":2,"frameWidth":8,"height":2,"name":"huomiao01","frameHeight":8,"x":122}],"width":128,"height":128,"name":"SoldierWaterGhost","imagePath":"SoldierWaterGhost_tex.png"} \ No newline at end of file +{"imagePath":"SoldierWaterGhost_tex.png","width":64,"height":64,"name":"SoldierWaterGhost","SubTexture":[{"frameY":-1,"y":27,"frameWidth":12,"frameHeight":11,"width":10,"height":10,"name":"biu","frameX":-1,"x":1},{"width":5,"y":23,"height":7,"name":"rightArm","x":40},{"frameY":0,"y":19,"frameWidth":15,"frameHeight":16,"width":10,"height":16,"name":"yinmoqe00","frameX":-3,"x":47},{"frameY":0,"y":1,"frameWidth":17,"frameHeight":21,"width":17,"height":20,"name":"body","frameX":0,"x":28},{"width":5,"y":37,"height":7,"name":"rightShoulder","x":42},{"frameY":0,"y":27,"frameWidth":10,"frameHeight":9,"width":9,"height":9,"name":"rightFrontArm","frameX":0,"x":13},{"width":7,"y":38,"height":7,"name":"rightHand","x":13},{"width":6,"y":36,"height":6,"name":"leftArm","x":34},{"width":7,"y":39,"height":6,"name":"leftShoulder","x":1},{"frameY":0,"y":23,"frameWidth":10,"frameHeight":11,"width":10,"height":11,"name":"leftFrontArm","frameX":-1,"x":28},{"width":25,"y":1,"height":24,"name":"head2","x":1},{"frameY":0,"y":1,"frameWidth":17,"frameHeight":16,"width":16,"height":16,"name":"head","frameX":-1,"x":47},{"width":8,"y":36,"height":7,"name":"leftHand","x":24},{"frameY":-2,"y":32,"frameWidth":4,"frameHeight":4,"width":1,"height":1,"name":"huomiao01","frameX":-1,"x":42}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.json.meta b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.json.meta index f7c1a75..11cf821 100644 --- a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.json.meta +++ b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.json.meta @@ -1,7 +1,7 @@ { "ver": "1.0.0", "uuid": "e9e703e9-3589-4713-b889-28b23406d220", - "atlasJson": "{\"SubTexture\":[{\"y\":50,\"frameX\":-2,\"frameY\":-2,\"width\":19,\"frameWidth\":23,\"height\":19,\"name\":\"biu\",\"frameHeight\":22,\"x\":1},{\"width\":9,\"y\":50,\"height\":14,\"name\":\"rightArm\",\"x\":42},{\"y\":34,\"frameX\":-6,\"frameY\":0,\"width\":20,\"frameWidth\":29,\"height\":32,\"name\":\"yinmoqe00\",\"frameHeight\":32,\"x\":88},{\"y\":1,\"frameX\":0,\"frameY\":0,\"width\":33,\"frameWidth\":34,\"height\":39,\"name\":\"body\",\"frameHeight\":41,\"x\":53},{\"width\":9,\"y\":56,\"height\":13,\"name\":\"rightShoulder\",\"x\":74},{\"y\":50,\"frameX\":0,\"frameY\":0,\"width\":18,\"frameWidth\":19,\"height\":17,\"name\":\"rightFrontArm\",\"frameHeight\":18,\"x\":22},{\"width\":14,\"y\":50,\"height\":14,\"name\":\"rightHand\",\"x\":110},{\"width\":12,\"y\":42,\"height\":12,\"name\":\"leftArm\",\"x\":74},{\"width\":13,\"y\":66,\"height\":12,\"name\":\"leftShoulder\",\"x\":110},{\"y\":42,\"frameX\":-1,\"frameY\":0,\"width\":19,\"frameWidth\":20,\"height\":21,\"name\":\"leftFrontArm\",\"frameHeight\":21,\"x\":53},{\"width\":50,\"y\":1,\"height\":47,\"name\":\"head2\",\"x\":1},{\"y\":1,\"frameX\":-1,\"frameY\":0,\"width\":32,\"frameWidth\":33,\"height\":31,\"name\":\"head\",\"frameHeight\":32,\"x\":88},{\"width\":16,\"y\":34,\"height\":14,\"name\":\"leftHand\",\"x\":110},{\"y\":1,\"frameX\":-2,\"frameY\":-3,\"width\":2,\"frameWidth\":8,\"height\":2,\"name\":\"huomiao01\",\"frameHeight\":8,\"x\":122}],\"width\":128,\"height\":128,\"name\":\"SoldierWaterGhost\",\"imagePath\":\"SoldierWaterGhost_tex.png\"}", + "atlasJson": "{\"imagePath\":\"SoldierWaterGhost_tex.png\",\"width\":64,\"height\":64,\"name\":\"SoldierWaterGhost\",\"SubTexture\":[{\"frameY\":-1,\"y\":27,\"frameWidth\":12,\"frameHeight\":11,\"width\":10,\"height\":10,\"name\":\"biu\",\"frameX\":-1,\"x\":1},{\"width\":5,\"y\":23,\"height\":7,\"name\":\"rightArm\",\"x\":40},{\"frameY\":0,\"y\":19,\"frameWidth\":15,\"frameHeight\":16,\"width\":10,\"height\":16,\"name\":\"yinmoqe00\",\"frameX\":-3,\"x\":47},{\"frameY\":0,\"y\":1,\"frameWidth\":17,\"frameHeight\":21,\"width\":17,\"height\":20,\"name\":\"body\",\"frameX\":0,\"x\":28},{\"width\":5,\"y\":37,\"height\":7,\"name\":\"rightShoulder\",\"x\":42},{\"frameY\":0,\"y\":27,\"frameWidth\":10,\"frameHeight\":9,\"width\":9,\"height\":9,\"name\":\"rightFrontArm\",\"frameX\":0,\"x\":13},{\"width\":7,\"y\":38,\"height\":7,\"name\":\"rightHand\",\"x\":13},{\"width\":6,\"y\":36,\"height\":6,\"name\":\"leftArm\",\"x\":34},{\"width\":7,\"y\":39,\"height\":6,\"name\":\"leftShoulder\",\"x\":1},{\"frameY\":0,\"y\":23,\"frameWidth\":10,\"frameHeight\":11,\"width\":10,\"height\":11,\"name\":\"leftFrontArm\",\"frameX\":-1,\"x\":28},{\"width\":25,\"y\":1,\"height\":24,\"name\":\"head2\",\"x\":1},{\"frameY\":0,\"y\":1,\"frameWidth\":17,\"frameHeight\":16,\"width\":16,\"height\":16,\"name\":\"head\",\"frameX\":-1,\"x\":47},{\"width\":8,\"y\":36,\"height\":7,\"name\":\"leftHand\",\"x\":24},{\"frameY\":-2,\"y\":32,\"frameWidth\":4,\"frameHeight\":4,\"width\":1,\"height\":1,\"name\":\"huomiao01\",\"frameX\":-1,\"x\":42}]}", "texture": "def168c3-3f07-43f9-a460-36b397c70a57", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.png b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.png index c2af9ee..f178d33 100644 Binary files a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.png and b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.png differ diff --git a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.png.meta b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.png.meta index a7fa894..e9770e7 100644 --- a/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.png.meta +++ b/frontend/assets/resources/animation/SolderWaterGhost/SoldierWaterGhost_tex.png.meta @@ -16,14 +16,14 @@ "trimType": "auto", "trimThreshold": 1, "rotated": false, - "offsetX": -0.5, - "offsetY": 24.5, + "offsetX": 0, + "offsetY": 9, "trimX": 1, "trimY": 1, - "width": 125, - "height": 77, - "rawWidth": 128, - "rawHeight": 128, + "width": 62, + "height": 44, + "rawWidth": 64, + "rawHeight": 64, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json index f2c523b..e0f5453 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json @@ -1 +1 @@ -{"frameRate":60,"name":"SoldierFireGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierFireGhost","aabb":{"x":-34.2,"y":-91.74,"width":77.68,"height":94.31},"bone":[{"name":"root"},{"inheritScale":false,"length":13,"name":"leftShoulder","parent":"root","transform":{"x":-11.2185,"y":-56.7863,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.2,"y":-46.0924,"scX":3,"scY":3}},{"inheritScale":false,"length":17,"name":"rightArm","parent":"root","transform":{"x":13.5908,"y":-53.6036,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":12.64,"y":-42.7787,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":11.5,"y":-54.7347}},{"inheritScale":false,"length":17,"name":"leg","parent":"root","transform":{"x":-0.9105,"y":-2.8201,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":22,"name":"body","parent":"root","transform":{"x":2.0039,"y":-24.7902,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":12,"name":"rightShoulder","parent":"root","transform":{"x":18.2082,"y":-52.6804,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":11,"name":"head","parent":"root","transform":{"x":8.206,"y":-62.581,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":10,"name":"leftArm","parent":"root","transform":{"x":-13.0118,"y":-53.6185,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-10.0286,"y":-56.4408,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-30.0572,"y":-33.1972,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":26.5689,"y":-30.0747}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":17.6467,"y":1.3208,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":14.7447,"y":3.5738,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":10.7292,"y":-5.7822,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":14.7808,"y":2.8582,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"body","display":[{"name":"yinmo02","transform":{"x":12.81,"y":-2.38,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":6.29,"y":0.98,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":9.07,"y":-0.39,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":6.91,"y":0.09,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":3.74,"y":-1.19,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":13.01,"y":-2.08,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":13.28,"y":-2.44,"skX":83.48,"skY":83.48}}]},{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":10.63,"y":-0.15,"skX":85.72,"skY":85.72}}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":4.79,"y":-0.12,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":5.38,"y":-0.23,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":3.42,"y":-0.82,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":4.09,"y":-0.34,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":44.16,"y":14.08},{"duration":12,"tweenEasing":0,"x":44.16,"y":14.08},{"duration":15,"tweenEasing":0,"x":31.04,"y":15.36},{"duration":15,"tweenEasing":0,"x":22.08,"y":-0.64},{"duration":6,"x":-10.24,"y":-23.36}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":7.36,"y":-2.48},{"duration":9,"tweenEasing":0,"x":7.36,"y":-2.48},{"duration":15,"tweenEasing":0,"x":-2,"y":-15.76},{"duration":12,"tweenEasing":0,"x":-14.48,"y":-20.48},{"duration":12,"tweenEasing":0,"x":-14.64,"y":-36.8},{"duration":6,"x":-40.56,"y":-53.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-14.8,"y":25.6},{"duration":12,"tweenEasing":0,"x":-14.8,"y":25.6},{"duration":18,"tweenEasing":0,"x":-29.2,"y":17.6},{"duration":12,"tweenEasing":0,"x":-38,"y":9.2},{"duration":9,"tweenEasing":0,"x":-56.4,"y":4.4},{"duration":3,"x":-68.8,"y":4}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":10.56,"y":11.2},{"duration":12,"tweenEasing":0,"x":10.56,"y":11.2},{"duration":15,"tweenEasing":0,"x":-1.6,"y":1.6},{"duration":18,"tweenEasing":0,"x":-19.84,"y":3.2},{"duration":9,"tweenEasing":0,"x":-29.76,"y":-6.72},{"duration":3,"x":-39.68,"y":-24}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.15,"y":1.19},{"duration":15,"tweenEasing":0,"x":0.46,"y":-1.06},{"duration":15,"tweenEasing":0,"x":-0.33,"y":-2.07},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":5.76},{"duration":15,"tweenEasing":0,"x":5.14,"y":1.94},{"duration":15,"tweenEasing":0,"x":8.29,"y":-0.16},{"duration":15,"tweenEasing":0,"x":7.36,"y":2.19},{"duration":0,"x":5.76}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":3.84,"y":-0.96},{"duration":15,"tweenEasing":0,"x":7.18,"y":1.44},{"duration":15,"tweenEasing":0,"x":13.26,"y":3.09},{"duration":15,"tweenEasing":0,"x":11.89,"y":3.87},{"duration":0,"x":3.84,"y":-0.96}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":5.44,"y":1.28},{"duration":15,"tweenEasing":0,"x":4.96,"y":4.88},{"duration":15,"tweenEasing":0,"x":7.29,"y":0.64},{"duration":15,"tweenEasing":0,"x":7.59,"y":5.42},{"duration":0,"x":5.44,"y":1.28}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":3.41,"y":1.17},{"duration":15,"tweenEasing":0,"x":1.71,"y":2.68},{"duration":15,"tweenEasing":0,"x":3.89,"y":0.18},{"duration":15,"tweenEasing":0,"x":5.61,"y":3.87},{"duration":0,"x":3.41,"y":1.17}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":2.72},{"duration":15,"tweenEasing":0,"x":0.96,"y":-0.18},{"duration":15,"tweenEasing":0,"x":1.42,"y":3.34},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":6,"tweenEasing":0,"x":-0.8},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":6,"tweenEasing":0,"x":-0.96},{"duration":12,"tweenEasing":0,"x":0.64},{"duration":6,"tweenEasing":0,"x":0.64},{"duration":6,"tweenEasing":0,"x":-0.32},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.19,"y":-1.7},{"duration":15,"tweenEasing":0,"x":0.81,"y":-2.06},{"duration":15,"tweenEasing":0,"x":0.11,"y":-0.1},{"duration":3,"tweenEasing":0,"x":0.11,"y":-0.1},{"duration":6,"tweenEasing":0,"x":-0.08,"y":-2.55},{"duration":6,"tweenEasing":0,"y":-2.64},{"duration":0,"x":-0.19,"y":-1.7}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":4.32,"y":4.08},{"duration":15,"tweenEasing":0,"x":4.96,"y":2.34},{"duration":15,"tweenEasing":0,"x":-8.37,"y":-4.26},{"duration":15,"tweenEasing":0,"x":4.21,"y":3.38},{"duration":0,"x":4.32,"y":4.08}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":12,"tweenEasing":0,"x":29.6,"y":-47},{"duration":24,"tweenEasing":0,"x":22.4,"y":-63.2},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":12,"tweenEasing":0,"x":29.6,"y":-47},{"duration":24,"tweenEasing":0,"x":22.4,"y":-63.2},{"duration":12,"tweenEasing":0,"x":33.4,"y":-11},{"duration":12,"tweenEasing":0,"x":26.6,"y":-37.6},{"duration":9,"tweenEasing":0,"x":29.6,"y":-47},{"duration":3,"x":22.4,"y":-63.2}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":15,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":21,"tweenEasing":0,"x":5.03,"y":-47.77},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":15,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":21,"tweenEasing":0,"x":5.03,"y":-47.77},{"duration":12,"tweenEasing":0,"x":6.86,"y":9.83},{"duration":12,"tweenEasing":0,"x":8.69,"y":-11.2},{"duration":12,"tweenEasing":0,"x":-3.89,"y":-32.46},{"duration":6,"x":5.03,"y":-47.77}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":18,"tweenEasing":0,"x":-37.94,"y":-42.74},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":15,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":18,"tweenEasing":0,"x":-37.94,"y":-42.74},{"duration":15,"tweenEasing":0,"y":15.09},{"duration":12,"tweenEasing":0,"x":-12.57,"y":-18.51},{"duration":12,"tweenEasing":0,"x":-24.23,"y":-35.89},{"duration":6,"x":-37.94,"y":-42.74}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":9,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":15,"tweenEasing":0,"x":-27.43,"y":-20.57},{"duration":15,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":15,"tweenEasing":0,"x":-27.43,"y":-20.57},{"duration":15,"tweenEasing":0,"x":2.51,"y":23.54},{"duration":15,"tweenEasing":0,"x":-3.2,"y":-0.46},{"duration":15,"tweenEasing":0,"x":-28.57,"y":-8.23},{"duration":9,"x":-27.43,"y":-20.57}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":3,"tweenEasing":0,"x":0.7,"y":0.08},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.44,"y":0.2},{"duration":12,"tweenEasing":0,"x":0.12,"y":0.59},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":2.96,"y":-1.21},{"duration":3,"tweenEasing":0,"x":0.28,"y":0.35},{"duration":15,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":1.5,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.65,"y":-3},{"duration":12,"tweenEasing":0,"x":0.49,"y":-0.89},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":10.32,"y":5.25},{"duration":3,"tweenEasing":0,"x":15.99,"y":2.07},{"duration":15,"tweenEasing":0,"x":-14.24,"y":3.29},{"duration":3,"tweenEasing":0,"x":-20.77,"y":-0.8},{"duration":3,"tweenEasing":0,"x":-7.4,"y":-0.01},{"duration":12,"tweenEasing":0,"x":9.35,"y":3.21},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":8.51,"y":-1.26},{"duration":3,"tweenEasing":0,"x":15.88,"y":0.43},{"duration":15,"tweenEasing":0,"x":-0.36,"y":1.05},{"duration":3,"tweenEasing":0,"x":-5.81,"y":-1.2},{"duration":3,"tweenEasing":0,"x":3.44,"y":2.61},{"duration":12,"tweenEasing":0,"x":9.85,"y":0.52},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":11.17,"y":11.95},{"duration":3,"tweenEasing":0,"x":17.87,"y":16.22},{"duration":15,"tweenEasing":0,"x":-17.67,"y":1.23},{"duration":3,"tweenEasing":0,"x":-18.56,"y":-2},{"duration":3,"tweenEasing":0,"x":-8.49,"y":-0.72},{"duration":12,"tweenEasing":0,"x":9.18,"y":7.81},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":7.13,"y":4.46},{"duration":3,"tweenEasing":0,"x":10.32,"y":7.06},{"duration":15,"tweenEasing":0,"x":-22.31,"y":-2.2},{"duration":3,"tweenEasing":0,"x":-20.91,"y":-5.68},{"duration":3,"tweenEasing":0,"x":-8.89,"y":-0.87},{"duration":12,"tweenEasing":0,"x":6.95,"y":5.43},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.89,"y":3.28},{"duration":3,"tweenEasing":0,"x":0.05,"y":2.17},{"duration":9,"tweenEasing":0,"x":-2.88,"y":-1.42},{"duration":6,"tweenEasing":0,"x":-3.36,"y":-0.99},{"duration":3,"tweenEasing":0,"x":-3.68,"y":-0.7},{"duration":3,"tweenEasing":0,"x":-1.23,"y":-0.74},{"duration":12,"tweenEasing":0,"x":0.1,"y":2.23},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.48},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.64},{"duration":3,"tweenEasing":0,"y":-0.64},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":3,"tweenEasing":0,"x":-2.61,"y":-1.24},{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":12,"tweenEasing":0,"x":-2.41,"y":-0.33},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":3,"tweenEasing":0,"x":3.12,"y":-3.07},{"duration":15,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":-1.09,"y":1.77},{"duration":3,"tweenEasing":0,"x":0.54,"y":1.17},{"duration":12,"tweenEasing":0,"x":1.24,"y":-3.23},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":15,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":7.03,"y":0.57},{"duration":3,"tweenEasing":0,"x":8.46,"y":4.38},{"duration":15,"tweenEasing":0,"x":-9.94,"y":-5.59},{"duration":3,"tweenEasing":0,"x":-10.56,"y":-6.78},{"duration":3,"tweenEasing":0,"x":-7.33,"y":-0.7},{"duration":12,"tweenEasing":0,"x":4.31,"y":3.25},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":60,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":-18.2,"y":13.4},{"duration":12,"tweenEasing":0,"x":-18.2,"y":13.4},{"duration":15,"tweenEasing":0,"x":-35.6,"y":3.6},{"duration":12,"tweenEasing":0,"x":-48,"y":0.8},{"duration":9,"x":-61.2}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-105.08},{"duration":12,"tweenEasing":0,"rotate":-105.08},{"duration":15,"tweenEasing":0,"rotate":-96.73},{"duration":12,"tweenEasing":0,"rotate":-69.9},{"duration":9,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-29.33,"y":21.33},{"duration":9,"tweenEasing":0,"x":-29.33,"y":21.33},{"duration":15,"tweenEasing":0,"x":-46.13,"y":12},{"duration":15,"tweenEasing":0,"x":-53.87,"y":18.93},{"duration":15,"x":-62.13,"y":14.67}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-108.91},{"duration":15,"tweenEasing":0,"rotate":-108.91},{"duration":15,"tweenEasing":0,"rotate":-127.09},{"duration":15,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":-9.07,"y":26.4},{"duration":12,"tweenEasing":0,"x":-9.07,"y":26.4},{"duration":15,"tweenEasing":0,"x":-27.2,"y":5.6},{"duration":9,"tweenEasing":0,"x":-46.93,"y":-8.53},{"duration":18,"x":-54.93,"y":-10.93}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":12,"tweenEasing":0,"rotate":31.2},{"duration":15,"tweenEasing":0,"rotate":-0.05},{"duration":9,"tweenEasing":0,"rotate":-26.91},{"duration":18,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":15,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":12,"tweenEasing":0,"x":0.21,"y":0.98},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-12.3},{"duration":12,"tweenEasing":0,"rotate":18.53},{"duration":15,"tweenEasing":0,"rotate":-9},{"duration":12,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.43,"y":0.09},{"duration":12,"tweenEasing":0,"x":0.37,"y":0.24},{"duration":15,"tweenEasing":0,"x":1.38,"y":-1.56},{"duration":12,"tweenEasing":0,"x":0.39,"y":0.48},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":13.83},{"duration":12,"tweenEasing":0,"rotate":25.06},{"duration":15,"tweenEasing":0,"rotate":17.69},{"duration":12,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-5.77,"y":-1.21},{"duration":12,"tweenEasing":0,"x":16.81,"y":-1.49},{"duration":15,"tweenEasing":0,"x":16.01,"y":-1.17},{"duration":12,"tweenEasing":0,"x":2.27,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":40},{"duration":12,"tweenEasing":0,"rotate":-12.39},{"duration":15,"tweenEasing":0,"rotate":4.99},{"duration":12,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.85,"y":-3.89},{"duration":12,"tweenEasing":0,"x":25.9,"y":0.2},{"duration":15,"tweenEasing":0,"x":24.94,"y":0.84},{"duration":12,"tweenEasing":0,"x":2.99,"y":-4.37},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":66.79},{"duration":12,"tweenEasing":0,"rotate":-95.1},{"duration":15,"tweenEasing":0,"rotate":-98.37},{"duration":12,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-8.35,"y":0.91},{"duration":12,"tweenEasing":0,"x":18.7,"y":3.66},{"duration":15,"tweenEasing":0,"x":17.58,"y":4.46},{"duration":12,"tweenEasing":0,"x":2.45,"y":1.81},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":15.73},{"duration":12,"tweenEasing":0,"rotate":2.95},{"duration":15,"tweenEasing":0,"rotate":2.83},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-7.25,"y":-1.47},{"duration":12,"tweenEasing":0,"x":12.57,"y":4.07},{"duration":15,"tweenEasing":0,"x":12.25,"y":4.55},{"duration":12,"tweenEasing":0,"x":0.8,"y":0.69},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-11.02},{"duration":12,"tweenEasing":0,"rotate":-27.15},{"duration":15,"tweenEasing":0,"rotate":-15.36},{"duration":12,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.93,"y":-2.03},{"duration":12,"tweenEasing":0,"x":2.55,"y":-0.18},{"duration":15,"tweenEasing":0,"x":2.87,"y":0.46},{"duration":12,"tweenEasing":0,"y":0.8},{"duration":0}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-11.15},{"duration":12,"tweenEasing":0,"rotate":29.43},{"duration":15,"tweenEasing":0,"rotate":30.7},{"duration":12,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":12,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":24,"tweenEasing":0,"y":-0.05},{"duration":6,"tweenEasing":0,"y":-0.05},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":12,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":12,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":6,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-0.39},{"duration":15,"tweenEasing":0,"x":-1.95,"y":-0.39},{"duration":12,"tweenEasing":0,"x":-1.08,"y":-0.33},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-34.26},{"duration":12,"tweenEasing":0,"rotate":-8.09},{"duration":15,"tweenEasing":0,"rotate":-36.51},{"duration":12,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":18,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-1.4,"y":0.36},{"duration":12,"tweenEasing":0,"x":-0.68,"y":0.24},{"duration":15,"tweenEasing":0,"x":-0.88,"y":0.14},{"duration":12,"tweenEasing":0,"x":0.62,"y":0.51},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-36.51},{"duration":12,"tweenEasing":0,"rotate":-41.51},{"duration":15,"tweenEasing":0,"rotate":-50.9},{"duration":12,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":18,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":-5.92,"y":-0.64},{"duration":12,"tweenEasing":0,"x":2.79,"y":7.74},{"duration":15,"tweenEasing":0,"x":2.95,"y":8.38},{"duration":12,"tweenEasing":0,"x":-7.65,"y":-6.15},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":8.81},{"duration":12,"tweenEasing":0,"rotate":7.26},{"duration":15,"tweenEasing":0,"rotate":15.7},{"duration":12,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":42},{"duration":6,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":42},{"duration":12,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":39},{"duration":15,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":18,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-5.03,"y":3.43},{"duration":3,"tweenEasing":0,"x":-1.32,"y":-0.45},{"duration":6,"tweenEasing":0,"x":6.49,"y":-2.74},{"duration":3,"x":9.6,"y":-12.57}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9,"y":7.6},{"duration":3,"tweenEasing":0,"x":-9,"y":7.6},{"duration":3,"tweenEasing":0,"x":-20.26,"y":-2.26},{"duration":9,"tweenEasing":0,"x":-23.68,"y":-12.6},{"duration":0,"x":-48,"y":-32.6}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.36,"y":10.88},{"duration":3,"tweenEasing":0,"x":-1.52,"y":-14.48},{"duration":6,"tweenEasing":0,"x":3.68,"y":-18.72},{"duration":3,"x":13.12,"y":-27.2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":5.44,"y":1.92},{"duration":3,"tweenEasing":0,"x":-12.08,"y":-14.48},{"duration":9,"tweenEasing":0,"x":-13.46,"y":-17.74},{"duration":0,"x":-18.88,"y":-27.52}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.31,"y":4.6},{"duration":9,"tweenEasing":0,"x":-7.03,"y":3.4},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.32,"y":2.11},{"duration":9,"tweenEasing":0,"x":-4.59,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-5.95,"y":5.81},{"duration":9,"tweenEasing":0,"x":-4.61,"y":1.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-6.05,"y":0.53},{"duration":9,"tweenEasing":0,"x":-5.11,"y":-0.59},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-4.19,"y":2.37},{"duration":9,"tweenEasing":0,"x":0.8,"y":1.76},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.28,"y":0.24},{"duration":9,"tweenEasing":0,"x":0.64,"y":-0.08},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":3,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.44,"y":-0.72},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":3,"tweenEasing":0,"x":-4.96,"y":5.17},{"duration":9,"tweenEasing":0,"x":-3.87,"y":1.92},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":14.4,"y":3.43},{"duration":18,"tweenEasing":0,"x":14.4,"y":3.43},{"duration":15,"tweenEasing":0,"x":6.4,"y":-10.29},{"duration":15,"tweenEasing":0,"x":8.46,"y":-23.09},{"duration":6,"x":1.14,"y":-32.46}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-3.2,"y":1.6},{"duration":15,"tweenEasing":0,"x":-3.2,"y":1.6},{"duration":18,"tweenEasing":0,"x":0.23,"y":-24.23},{"duration":18,"tweenEasing":0,"x":-8.69,"y":-39.54},{"duration":9,"x":-11.61,"y":-48.32}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-6.13,"y":22.4},{"duration":12,"tweenEasing":0,"x":-6.13,"y":22.4},{"duration":18,"tweenEasing":0,"x":-2.76,"y":-4.89},{"duration":12,"tweenEasing":0,"x":8.89,"y":-19.64},{"duration":9,"x":22.49,"y":-23.38}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":4,"y":6.13},{"duration":9,"tweenEasing":0,"x":4,"y":6.13},{"duration":9,"tweenEasing":0,"x":1.07,"y":-7.73},{"duration":15,"tweenEasing":0,"x":-13.07,"y":-20.27},{"duration":24,"x":-40.53,"y":-29.6}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":6,"tweenEasing":0,"x":0.1,"y":0.47},{"duration":9,"tweenEasing":0,"x":0.3,"y":-0.43},{"duration":3,"tweenEasing":0,"x":0.3,"y":-0.43},{"duration":42,"x":-0.66,"y":-0.09}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.36,"y":-1.9},{"duration":6,"tweenEasing":0,"x":1.36,"y":-1.9},{"duration":9,"tweenEasing":0,"x":1.29,"y":-2.29},{"duration":3,"tweenEasing":0,"x":1.29,"y":-2.29},{"duration":15,"tweenEasing":0,"x":0.3,"y":0.3},{"duration":9,"tweenEasing":0,"x":-1.66,"y":1.87},{"duration":6,"tweenEasing":0,"x":1.28,"y":-7.25},{"duration":12,"x":0.98,"y":-8.17}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":7.84,"y":0.44},{"duration":3,"tweenEasing":0,"x":7.31,"y":-0.39},{"duration":6,"tweenEasing":0,"x":7.31,"y":0.09},{"duration":9,"tweenEasing":0,"x":10.95,"y":1.85},{"duration":3,"tweenEasing":0,"x":10.69,"y":-1.88},{"duration":15,"tweenEasing":0,"x":-2.01,"y":-11.67},{"duration":9,"tweenEasing":0,"x":-9.21,"y":-16.87},{"duration":6,"tweenEasing":0,"x":-0.41,"y":38.01},{"duration":12,"tweenEasing":0,"x":-3.29,"y":34.33},{"duration":0,"x":-3.29,"y":37.53}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":6.76,"y":-4.62},{"duration":3,"tweenEasing":0,"x":6.76,"y":-5.1},{"duration":6,"tweenEasing":0,"x":6.76,"y":-4.62},{"duration":9,"tweenEasing":0,"x":12.09,"y":-1.76},{"duration":3,"tweenEasing":0,"x":11.83,"y":-5.49},{"duration":15,"tweenEasing":0,"x":0.87,"y":-11.81},{"duration":9,"tweenEasing":0,"x":2.47,"y":-1.81},{"duration":6,"tweenEasing":0,"x":2.87,"y":28.27},{"duration":12,"tweenEasing":0,"x":1.27,"y":25.87},{"duration":0,"x":1.59,"y":27.47}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":8.19,"y":6.12},{"duration":3,"tweenEasing":0,"x":7.71,"y":5.8},{"duration":6,"tweenEasing":0,"x":7.71,"y":6.28},{"duration":9,"tweenEasing":0,"x":8.92,"y":10.46},{"duration":3,"tweenEasing":0,"x":9.58,"y":11.39},{"duration":15,"tweenEasing":0,"x":-2.71,"y":-14.39},{"duration":9,"tweenEasing":0,"x":-1.24,"y":-22.13},{"duration":6,"tweenEasing":0,"x":-2.2,"y":36.6},{"duration":12,"tweenEasing":0,"x":-5.08,"y":33.88},{"duration":0,"x":0.04,"y":42.84}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":6.06,"y":1.67},{"duration":3,"tweenEasing":0,"x":6.06,"y":1.19},{"duration":6,"tweenEasing":0,"x":6.06,"y":1.67},{"duration":9,"tweenEasing":0,"x":6.79,"y":3.11},{"duration":3,"tweenEasing":0,"x":6.52,"y":-1.69},{"duration":15,"tweenEasing":0,"x":-5.18,"y":-17.07},{"duration":9,"tweenEasing":0,"x":-0.38,"y":-13.87},{"duration":6,"tweenEasing":0,"x":-2.38,"y":32.61},{"duration":12,"tweenEasing":0,"x":-0.46,"y":33.73},{"duration":0,"x":-0.46,"y":38.53}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.18,"y":0.49},{"duration":3,"tweenEasing":0,"x":-0.34,"y":0.17},{"duration":6,"tweenEasing":0,"x":-0.34,"y":0.65},{"duration":9,"tweenEasing":0,"x":-0.18,"y":2.25},{"duration":3,"tweenEasing":0,"x":-0.44,"y":-1.48},{"duration":15,"tweenEasing":0,"x":2.36,"y":-14.52},{"duration":9,"tweenEasing":0,"x":3.29,"y":-8.39},{"duration":6,"tweenEasing":0,"x":9.96,"y":24.76},{"duration":12,"tweenEasing":0,"x":10.6,"y":19.16},{"duration":0,"x":10.92,"y":21.4}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.84},{"duration":9,"tweenEasing":0,"x":-0.84},{"duration":3,"tweenEasing":0,"x":-0.52,"y":-0.64},{"duration":15,"tweenEasing":0,"x":-0.52,"y":-3.84},{"duration":6,"tweenEasing":0,"x":-0.52,"y":-5.28},{"duration":21,"x":-0.52,"y":-3.52}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":9,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":6,"tweenEasing":0,"x":-1.53,"y":-0.76},{"duration":27,"tweenEasing":0,"x":-2.24,"y":-1.59},{"duration":9,"tweenEasing":0,"x":-2.24,"y":-1.59},{"duration":18,"x":-1.03,"y":-1.63}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":6,"tweenEasing":0,"x":-1.2,"y":-0.16},{"duration":12,"tweenEasing":0,"x":-1.32,"y":-0.29},{"duration":15,"tweenEasing":0,"x":-1.32,"y":-0.29},{"duration":9,"tweenEasing":0,"x":-2.93,"y":-3.06},{"duration":6,"tweenEasing":0,"x":-6.42,"y":3.56},{"duration":12,"tweenEasing":0,"x":-5.56,"y":4.61},{"duration":0,"x":-7.53,"y":5.06}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":6,"tweenEasing":0,"x":7.79,"y":1.43},{"duration":3,"tweenEasing":0,"x":6.83,"y":0.79},{"duration":6,"tweenEasing":0,"x":6.83,"y":1.27},{"duration":9,"tweenEasing":0,"x":6.51,"y":2.87},{"duration":3,"tweenEasing":0,"x":6.24,"y":-0.86},{"duration":15,"tweenEasing":0,"x":-1.89,"y":-11.77},{"duration":9,"tweenEasing":0,"x":0.11,"y":0.9},{"duration":6,"tweenEasing":0,"x":-4.52,"y":42.14},{"duration":12,"tweenEasing":0,"x":-6.12,"y":39.74},{"duration":0,"x":-5.8,"y":41.34}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-7.31},{"duration":9,"tweenEasing":0,"y":-12.8},{"duration":6,"tweenEasing":0,"y":-12.8},{"duration":27,"x":0.8,"y":-41.6}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-18.49,"y":6.76},{"duration":18,"tweenEasing":0,"x":-18.49,"y":6.76},{"duration":21,"tweenEasing":0,"x":-16,"y":-10.13},{"duration":21,"tweenEasing":0,"x":-24.71,"y":-24.36},{"duration":9,"x":-24.53,"y":-37.69}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-1.87,"y":10.67},{"duration":24,"tweenEasing":0,"x":-1.87,"y":10.67},{"duration":21,"tweenEasing":0,"x":3.25,"y":-16.21},{"duration":18,"tweenEasing":0,"x":0.69,"y":-29.17},{"duration":0,"x":1.17,"y":-34.61}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":4,"y":-17},{"duration":24,"tweenEasing":0,"x":1,"y":-29.2},{"duration":3,"x":-0.2,"y":-39.8}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.6,"y":0.39},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.11,"y":-1.6},{"duration":24,"tweenEasing":0,"x":5.47,"y":-1.28},{"duration":24,"tweenEasing":0,"x":6.08,"y":-1.98},{"duration":0,"x":4.11,"y":-1.6}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.8,"y":0.91},{"duration":24,"tweenEasing":0,"x":4.8,"y":0.91},{"duration":24,"tweenEasing":0,"x":5.07,"y":1.29},{"duration":0,"x":4.8,"y":0.91}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":4.19,"y":4.72},{"duration":24,"tweenEasing":0,"x":6.33,"y":5.71},{"duration":24,"tweenEasing":0,"x":6.14,"y":5.69},{"duration":0,"x":4.19,"y":4.72}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.43,"y":0.23},{"duration":24,"tweenEasing":0,"x":5.46,"y":1.26},{"duration":24,"tweenEasing":0,"x":5.41,"y":0.45},{"duration":0,"x":3.43,"y":0.23}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.23,"y":0.23},{"duration":24,"tweenEasing":0,"x":0.5,"y":-0.57},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":6.56,"y":3.17},{"duration":24,"tweenEasing":0,"x":6.56,"y":3.17},{"duration":24,"tweenEasing":0,"x":7.09,"y":2.9},{"duration":0,"x":6.56,"y":3.17}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":6.4,"y":-11.2},{"duration":24,"tweenEasing":0,"x":6.4,"y":-23.8},{"duration":0,"x":14,"y":-30.2}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-10.4,"y":-18.24},{"duration":21,"tweenEasing":0,"x":-10.08,"y":-32.8},{"duration":12,"x":-12.8,"y":-39.68}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":8.8,"y":-12.2},{"duration":24,"tweenEasing":0,"x":11,"y":-27.6},{"duration":24,"x":12.2,"y":-38.6}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.8,"y":-11.2},{"duration":18,"tweenEasing":0,"x":7.6,"y":-22.2},{"duration":9,"x":8.6,"y":-30.4}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-4.53,"y":-13.33},{"duration":18,"tweenEasing":0,"x":-3.47,"y":-21.07},{"duration":33,"x":-6.13,"y":-34.93}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.08,"y":0.37},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":9,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":9,"tweenEasing":0,"x":0.37,"y":0.2},{"duration":18,"tweenEasing":0,"x":0.38,"y":0.31},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.4,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.31,"y":-0.92},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-1.27},{"duration":9,"tweenEasing":0,"x":0.01,"y":-2.2},{"duration":18,"tweenEasing":0,"x":-0.19,"y":-1.43},{"duration":0,"x":-2.4,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.4,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-2.35},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-4.39},{"duration":9,"tweenEasing":0,"x":-0.53,"y":-3.63},{"duration":18,"tweenEasing":0,"x":-0.53,"y":-4.55},{"duration":0,"x":-2.4,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-2.13,"y":0.27},{"duration":9,"tweenEasing":0,"x":-0.29,"y":0.61},{"duration":9,"tweenEasing":0,"x":0.57,"y":-1.49},{"duration":9,"tweenEasing":0,"x":0.67,"y":-0.35},{"duration":9,"tweenEasing":0,"x":0.57,"y":-1.49},{"duration":9,"tweenEasing":0,"x":0.67,"y":0.13},{"duration":9,"tweenEasing":0,"x":0.57,"y":-2.13},{"duration":9,"tweenEasing":0,"x":0.67,"y":0.61},{"duration":18,"tweenEasing":0,"x":0.57,"y":-2.13},{"duration":0,"x":-2.13,"y":0.27}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":-0.72},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.61},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.61},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":9,"tweenEasing":0,"x":1.72,"y":-2.77},{"duration":9,"tweenEasing":0,"x":1.33,"y":-2},{"duration":18,"tweenEasing":0,"x":1.72,"y":-3.73},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.32,"y":0.32},{"duration":9,"tweenEasing":0,"y":-0.99},{"duration":9,"tweenEasing":0,"y":-0.96},{"duration":9,"tweenEasing":0,"y":-1.47},{"duration":9,"tweenEasing":0,"y":-1.12},{"duration":9,"tweenEasing":0,"y":-1.95},{"duration":9,"tweenEasing":0,"y":-0.96},{"duration":18,"tweenEasing":0,"y":-2.11},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.12},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.12},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.95,"y":-1.15},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":9,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":9,"tweenEasing":0,"x":-2.1,"y":-0.4},{"duration":18,"tweenEasing":0,"x":-1.71,"y":-0.37},{"duration":0,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":9,"tweenEasing":0,"x":-0.33,"y":0.31},{"duration":9,"tweenEasing":0,"x":-0.89,"y":0.2},{"duration":18,"tweenEasing":0,"x":-0.41,"y":0.01},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":9,"tweenEasing":0,"x":1.52,"y":0.77},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.51},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.51},{"duration":9,"tweenEasing":0,"x":2.26,"y":-1.5},{"duration":9,"tweenEasing":0,"x":1.84,"y":-0.99},{"duration":18,"tweenEasing":0,"x":2.26,"y":-2.14},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":6.93,"y":-13.69},{"duration":0,"x":10.84,"y":-19.73}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-8,"y":-6.63},{"duration":15,"tweenEasing":0,"x":-10.06,"y":-17.83},{"duration":9,"x":-10.74,"y":-24.69}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":7.77,"y":-12.8},{"duration":21,"tweenEasing":0,"x":13.49,"y":-21.94},{"duration":9,"x":13.03,"y":-26.74}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":6.8,"y":-15.73},{"duration":18,"tweenEasing":0,"x":6.27,"y":-28.27},{"duration":0,"x":7.33,"y":-35.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4.64,"y":-11.84},{"duration":21,"tweenEasing":0,"x":-11.68,"y":-18.88},{"duration":6,"x":-15.04,"y":-24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.58,"y":0.86},{"duration":24,"tweenEasing":0,"x":0.58,"y":0.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-1.12},{"duration":24,"tweenEasing":0,"x":-0.16,"y":-1.12},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.2,"y":-1.99},{"duration":24,"tweenEasing":0,"x":0.36,"y":-1.83},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.32,"y":-1.37},{"duration":24,"tweenEasing":0,"y":-0.89},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.64,"y":-3.79},{"duration":24,"tweenEasing":0,"x":0.64,"y":-1.55},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-1.44},{"duration":24,"tweenEasing":0,"x":0.16,"y":-0.64},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-1.95,"y":-1.15}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.3,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.17,"y":1.03},{"duration":24,"tweenEasing":0,"x":-0.13,"y":0.26},{"duration":0,"x":-0.3,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":1.76,"y":2.48},{"duration":21,"tweenEasing":0,"x":1.49,"y":0.92},{"duration":24,"tweenEasing":0,"x":2.13,"y":1.4},{"duration":0,"x":1.76,"y":2.48}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Walking"}]}]} \ No newline at end of file +{"frameRate":60,"name":"SoldierFireGhost","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":60,"name":"SoldierFireGhost","aabb":{"x":-17.1,"y":-45.87,"width":38.84,"height":47.16},"bone":[{"name":"root"},{"inheritScale":false,"length":6.5,"name":"leftShoulder","parent":"root","transform":{"x":-5.60925,"y":-28.39315,"skX":156.8918,"skY":156.8918}},{"inheritScale":false,"name":"backLight","parent":"root","transform":{"x":0.1,"y":-23.0462,"scX":3,"scY":3}},{"inheritScale":false,"length":8.5,"name":"rightArm","parent":"root","transform":{"x":6.7954,"y":-26.8018,"skX":46.9769,"skY":46.9769}},{"inheritScale":false,"name":"effect4","parent":"root","transform":{"x":6.32,"y":-21.38935,"skX":-9.349,"skY":-9.349}},{"inheritScale":false,"name":"effect7","parent":"root"},{"inheritScale":false,"name":"effect3","parent":"root","transform":{"x":5.75,"y":-27.36735}},{"inheritScale":false,"length":8.5,"name":"leg","parent":"root","transform":{"x":-0.45525,"y":-1.41005,"skX":-85.7242,"skY":-85.7242}},{"inheritScale":false,"length":11,"name":"body","parent":"root","transform":{"x":1.00195,"y":-12.3951,"skX":-82.2714,"skY":-82.2714}},{"inheritScale":false,"length":6,"name":"rightShoulder","parent":"root","transform":{"x":9.1041,"y":-26.3402,"skX":22.0857,"skY":22.0857}},{"inheritScale":false,"length":5.5,"name":"head","parent":"root","transform":{"x":4.103,"y":-31.2905,"skX":-83.4757,"skY":-83.4757}},{"inheritScale":false,"length":5,"name":"leftArm","parent":"root","transform":{"x":-6.5059,"y":-26.80925,"skX":122.5397,"skY":122.5397}},{"inheritScale":false,"name":"effect2","parent":"root","transform":{"x":-5.0143,"y":-28.2204,"skX":-79.3059,"skY":-79.3059}},{"inheritScale":false,"name":"effect5","parent":"root","transform":{"x":-15.0286,"y":-16.5986,"skX":-72.4737,"skY":-72.4737}},{"inheritScale":false,"name":"effect6","parent":"root","transform":{"x":13.28445,"y":-15.03735}},{"inheritScale":false,"name":"rightFrontArm","parent":"rightArm","transform":{"x":8.82335,"y":0.6604,"skX":10.7237,"skY":10.7237}},{"inheritScale":false,"name":"leftFrontArm","parent":"leftArm","transform":{"x":7.37235,"y":1.7869,"skX":-39.1583,"skY":-39.1583}},{"inheritScale":false,"name":"rightHand","parent":"rightFrontArm","transform":{"x":5.3646,"y":-2.8911,"skX":21.9835,"skY":21.9835}},{"inheritScale":false,"name":"leftHand","parent":"leftFrontArm","transform":{"x":7.3904,"y":1.4291,"skX":-25.7356,"skY":-25.7356}}],"slot":[{"name":"backLight","parent":"backLight"},{"name":"rightArm","parent":"rightArm"},{"name":"leg","parent":"leg"},{"name":"body","parent":"body"},{"name":"rightShoulder","parent":"rightShoulder"},{"name":"rightFrontArm","parent":"rightFrontArm"},{"name":"rightHand","parent":"rightHand"},{"name":"leftArm","parent":"leftArm"},{"name":"leftShoulder","parent":"leftShoulder"},{"name":"leftFrontArm","parent":"leftFrontArm"},{"name":"head","parent":"head"},{"name":"leftHand","parent":"leftHand"},{"name":"effect2","parent":"effect2"},{"name":"effect3","parent":"effect3"},{"name":"effect4","parent":"effect4"},{"name":"effect5","parent":"effect5"},{"name":"effect6","parent":"effect6"},{"displayIndex":-1,"name":"effect7","parent":"effect7"}],"skin":[{"slot":[{"name":"effect5","display":[{"name":"huomiao01"}]},{"name":"leftShoulder","display":[{"name":"yinmo03","transform":{"x":2.4,"y":-0.06,"skX":-154.62,"skY":-154.62},"path":"leftShoulder"}]},{"name":"leg","display":[{"name":"yinmoqe00","transform":{"x":5.32,"y":-0.07,"skX":85.72,"skY":85.72}}]},{"name":"head","display":[{"name":"yinmo01","transform":{"x":6.5,"y":-1.04,"skX":82.3,"skY":82.3,"scX":1.5,"scY":1.5},"path":"head"},{"name":"head2","transform":{"x":6.64,"y":-1.22,"skX":83.48,"skY":83.48}}]},{"name":"body","display":[{"name":"yinmo02","transform":{"x":6.41,"y":-1.19,"skX":82.27,"skY":82.27},"path":"body"}]},{"name":"backLight","display":[{"name":"biu"}]},{"name":"effect2","display":[{"name":"huomiao01"}]},{"name":"rightFrontArm","display":[{"name":"yinmo09","transform":{"x":1.87,"y":-0.59,"skX":-60.14,"skY":-60.14},"path":"rightFrontArm"}]},{"name":"rightArm","display":[{"name":"yinmo08","transform":{"x":4.54,"y":-0.2,"skX":-54.4,"skY":-54.4},"path":"rightArm"}]},{"name":"leftArm","display":[{"name":"yinmo05","transform":{"x":3.46,"y":0.04,"skX":-112.43,"skY":-112.43},"path":"leftArm"}]},{"name":"effect6","display":[{"name":"huomiao01"}]},{"name":"leftFrontArm","display":[{"name":"yinmo06","transform":{"x":3.15,"y":0.49,"skX":-76.83,"skY":-76.83},"path":"leftFrontArm"}]},{"name":"effect4","display":[{"name":"huomiao01"}]},{"name":"leftHand","display":[{"name":"yinmo07","transform":{"x":2.04,"y":-0.17,"skX":-66.8,"skY":-66.8},"path":"leftHand"}]},{"name":"rightShoulder","display":[{"name":"yinmo04","transform":{"x":1.71,"y":-0.41,"skX":-28.61,"skY":-28.61},"path":"rightShoulder"}]},{"name":"effect3","display":[{"name":"huomiao01"}]},{"name":"rightHand","display":[{"name":"yinmo10","transform":{"x":2.69,"y":-0.12,"skX":-63.84,"skY":-63.84},"path":"rightHand"}]}]}],"animation":[{"duration":60,"playTimes":0,"name":"Walking","bone":[{"name":"effect5","translateFrame":[{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":12,"tweenEasing":0,"x":22.08,"y":7.04},{"duration":15,"tweenEasing":0,"x":15.52,"y":7.68},{"duration":15,"tweenEasing":0,"x":11.04,"y":-0.32},{"duration":6,"x":-5.12,"y":-11.68}],"rotateFrame":[{"duration":24,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":21,"rotate":7.3}]},{"name":"effect4","translateFrame":[{"duration":6,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":9,"tweenEasing":0,"x":3.68,"y":-1.24},{"duration":15,"tweenEasing":0,"x":-1,"y":-7.88},{"duration":12,"tweenEasing":0,"x":-7.24,"y":-10.24},{"duration":12,"tweenEasing":0,"x":-7.32,"y":-18.4},{"duration":6,"x":-20.28,"y":-26.52}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":15,"tweenEasing":0,"rotate":-49.96},{"duration":12,"tweenEasing":0,"rotate":-84.92},{"duration":12,"tweenEasing":0,"rotate":-11.77},{"duration":6,"rotate":-28.57}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":12,"tweenEasing":0,"x":-7.4,"y":12.8},{"duration":18,"tweenEasing":0,"x":-14.6,"y":8.8},{"duration":12,"tweenEasing":0,"x":-19,"y":4.6},{"duration":9,"tweenEasing":0,"x":-28.2,"y":2.2},{"duration":3,"x":-34.4,"y":2}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-59.23},{"duration":12,"tweenEasing":0,"rotate":-36.85},{"duration":9,"tweenEasing":0,"rotate":-66.48},{"duration":3,"rotate":-111.5}]},{"name":"effect2","translateFrame":[{"duration":3,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":12,"tweenEasing":0,"x":5.28,"y":5.6},{"duration":15,"tweenEasing":0,"x":-0.8,"y":0.8},{"duration":18,"tweenEasing":0,"x":-9.92,"y":1.6},{"duration":9,"tweenEasing":0,"x":-14.88,"y":-3.36},{"duration":3,"x":-19.84,"y":-12}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":-61.22},{"duration":9,"tweenEasing":0,"rotate":0.48},{"duration":3,"rotate":27.59}]},{"name":"leftHand","rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":11.3},{"duration":15,"tweenEasing":0,"rotate":15.68},{"duration":15,"tweenEasing":0,"rotate":-5.06},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":0.07,"y":0.59},{"duration":15,"tweenEasing":0,"x":0.23,"y":-0.53},{"duration":15,"tweenEasing":0,"x":-0.17,"y":-1.03},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-4.65},{"duration":15,"tweenEasing":0,"rotate":12.03},{"duration":15,"tweenEasing":0,"rotate":23.96},{"duration":15,"tweenEasing":0,"rotate":16.54},{"duration":0,"rotate":-4.65}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.88},{"duration":15,"tweenEasing":0,"x":2.57,"y":0.97},{"duration":15,"tweenEasing":0,"x":4.14,"y":-0.08},{"duration":15,"tweenEasing":0,"x":3.68,"y":1.09},{"duration":0,"x":2.88}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":20.1},{"duration":15,"tweenEasing":0,"rotate":-5.43},{"duration":15,"tweenEasing":0,"rotate":10.13},{"duration":15,"tweenEasing":0,"rotate":-2.7},{"duration":0,"rotate":20.1}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.92,"y":-0.48},{"duration":15,"tweenEasing":0,"x":3.59,"y":0.72},{"duration":15,"tweenEasing":0,"x":6.63,"y":1.54},{"duration":15,"tweenEasing":0,"x":5.95,"y":1.94},{"duration":0,"x":1.92,"y":-0.48}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":26.91},{"duration":15,"tweenEasing":0,"rotate":-35.34},{"duration":15,"tweenEasing":0,"rotate":-70.51},{"duration":15,"tweenEasing":0,"rotate":-30.69},{"duration":0,"rotate":26.91}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.72,"y":0.64},{"duration":15,"tweenEasing":0,"x":2.48,"y":2.44},{"duration":15,"tweenEasing":0,"x":3.65,"y":0.32},{"duration":15,"tweenEasing":0,"x":3.79,"y":2.71},{"duration":0,"x":2.72,"y":0.64}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":0.59},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":15,"tweenEasing":0,"rotate":-0.72},{"duration":0,"rotate":0.59}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0,"x":1.71,"y":0.58},{"duration":15,"tweenEasing":0,"x":0.85,"y":1.34},{"duration":15,"tweenEasing":0,"x":1.95,"y":0.09},{"duration":15,"tweenEasing":0,"x":2.81,"y":1.94},{"duration":0,"x":1.71,"y":0.58}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":10.12},{"duration":15,"tweenEasing":0,"rotate":-14.23},{"duration":15,"tweenEasing":0,"rotate":5.57},{"duration":15,"tweenEasing":0,"rotate":-13.84},{"duration":0,"rotate":10.12}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"y":1.36},{"duration":15,"tweenEasing":0,"x":0.48,"y":-0.09},{"duration":15,"tweenEasing":0,"x":0.71,"y":1.67},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.24},{"duration":15,"tweenEasing":0,"rotate":13},{"duration":15,"tweenEasing":0,"rotate":16.36},{"duration":15,"tweenEasing":0,"rotate":14.15},{"duration":0,"rotate":11.24}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.4},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":6,"tweenEasing":0,"x":-0.48},{"duration":12,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":0.32},{"duration":6,"tweenEasing":0,"x":-0.16},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":1.02},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-0.52},{"duration":6}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":6,"tweenEasing":0,"y":1.1},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.8},{"duration":12,"y":0.9}]},{"name":"rightHand","translateFrame":[{"duration":60,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-8},{"duration":15,"tweenEasing":0,"rotate":-1.89},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":0.14},{"duration":0,"rotate":-8}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.1,"y":-0.85},{"duration":15,"tweenEasing":0,"x":0.41,"y":-1.03},{"duration":15,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.06,"y":-0.05},{"duration":6,"tweenEasing":0,"x":-0.04,"y":-1.27},{"duration":6,"tweenEasing":0,"y":-1.32},{"duration":0,"x":-0.1,"y":-0.85}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-43.73},{"duration":15,"tweenEasing":0,"rotate":-66.02},{"duration":15,"tweenEasing":0,"rotate":-6.47},{"duration":3,"tweenEasing":0,"rotate":-62.6},{"duration":6,"tweenEasing":0,"rotate":-58.82},{"duration":6,"tweenEasing":0,"rotate":-51.28},{"duration":0,"rotate":-43.73}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":2.16,"y":2.04},{"duration":15,"tweenEasing":0,"x":2.48,"y":1.17},{"duration":15,"tweenEasing":0,"x":-4.18,"y":-2.13},{"duration":15,"tweenEasing":0,"x":2.1,"y":1.69},{"duration":0,"x":2.16,"y":2.04}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.28},{"duration":15,"tweenEasing":0,"rotate":63.1},{"duration":15,"tweenEasing":0,"rotate":74.64},{"duration":15,"tweenEasing":0,"rotate":55.11},{"duration":0,"rotate":11.28}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":12,"value":-1},{"duration":45},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":6,"value":-1},{"duration":51},{"duration":3,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":27,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":6,"value":-1},{"duration":54},{"duration":0,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":60},{"duration":0,"value":-1}],"colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":33,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":60,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":174,"name":"Atk2","bone":[{"name":"effect5","translateFrame":[{"duration":18,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":12,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":24,"tweenEasing":0,"x":11.2,"y":-31.6},{"duration":12,"tweenEasing":0,"x":16.7,"y":-5.5},{"duration":12,"tweenEasing":0,"x":13.3,"y":-18.8},{"duration":9,"tweenEasing":0,"x":14.8,"y":-23.5},{"duration":3,"x":11.2,"y":-31.6}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":12,"tweenEasing":0,"rotate":11.57},{"duration":24,"tweenEasing":0,"rotate":61.88},{"duration":12,"tweenEasing":0,"rotate":33.54},{"duration":12,"tweenEasing":0,"rotate":56.49},{"duration":9,"tweenEasing":0,"rotate":11.57},{"duration":3,"rotate":61.88}]},{"name":"effect4","translateFrame":[{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":15,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":21,"tweenEasing":0,"x":2.52,"y":-23.89},{"duration":12,"tweenEasing":0,"x":3.43,"y":4.92},{"duration":12,"tweenEasing":0,"x":4.34,"y":-5.6},{"duration":12,"tweenEasing":0,"x":-1.95,"y":-16.23},{"duration":6,"x":2.52,"y":-23.89}],"rotateFrame":[{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":15,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":21,"tweenEasing":0,"rotate":-53.65},{"duration":12,"tweenEasing":0,"rotate":-12.09},{"duration":12,"tweenEasing":0,"rotate":-56.61},{"duration":12,"tweenEasing":0,"rotate":-44.01},{"duration":6,"rotate":-53.65}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":15,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":18,"tweenEasing":0,"x":-18.97,"y":-21.37},{"duration":15,"tweenEasing":0,"y":7.54},{"duration":12,"tweenEasing":0,"x":-6.29,"y":-9.26},{"duration":12,"tweenEasing":0,"x":-12.12,"y":-17.95},{"duration":6,"x":-18.97,"y":-21.37}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":18,"tweenEasing":0,"rotate":-111.08},{"duration":15,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-42.15},{"duration":12,"tweenEasing":0,"rotate":-77.72},{"duration":6,"rotate":-111.08}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":9,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":15,"tweenEasing":0,"x":-13.71,"y":-10.29},{"duration":15,"tweenEasing":0,"x":1.25,"y":11.77},{"duration":15,"tweenEasing":0,"x":-1.6,"y":-0.23},{"duration":15,"tweenEasing":0,"x":-14.29,"y":-4.12},{"duration":9,"x":-13.71,"y":-10.29}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":15,"tweenEasing":0,"rotate":57.19},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":44.61},{"duration":15,"tweenEasing":0,"rotate":26.09},{"duration":9,"rotate":57.19}]},{"name":"leftHand","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":3,"tweenEasing":0,"x":0.35,"y":0.04},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.1},{"duration":12,"tweenEasing":0,"x":0.06,"y":0.29},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":-6.46},{"duration":15,"tweenEasing":0,"rotate":8.11},{"duration":3,"tweenEasing":0,"rotate":9.3},{"duration":3,"tweenEasing":0,"rotate":15.3},{"duration":12,"tweenEasing":0,"rotate":-14.89},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.6},{"duration":3,"tweenEasing":0,"x":0.14,"y":0.17},{"duration":15,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.75,"y":-1.99},{"duration":3,"tweenEasing":0,"x":0.33,"y":-1.5},{"duration":12,"tweenEasing":0,"x":0.24,"y":-0.45},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":26.32},{"duration":3,"tweenEasing":0,"rotate":13.47},{"duration":15,"tweenEasing":0,"rotate":17.13},{"duration":3,"tweenEasing":0,"rotate":-10.43},{"duration":3,"tweenEasing":0,"rotate":-11.34},{"duration":12,"tweenEasing":0,"rotate":-21.72},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.16,"y":2.63},{"duration":3,"tweenEasing":0,"x":8,"y":1.03},{"duration":15,"tweenEasing":0,"x":-7.12,"y":1.65},{"duration":3,"tweenEasing":0,"x":-10.38,"y":-0.4},{"duration":3,"tweenEasing":0,"x":-3.7,"y":-0.01},{"duration":12,"tweenEasing":0,"x":4.67,"y":1.6},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":51.6},{"duration":3,"tweenEasing":0,"rotate":0.72},{"duration":15,"tweenEasing":0,"rotate":-26.65},{"duration":3,"tweenEasing":0,"rotate":-44.38},{"duration":3,"tweenEasing":0,"rotate":-6.99},{"duration":12,"tweenEasing":0,"rotate":18.04},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":4.25,"y":-0.63},{"duration":3,"tweenEasing":0,"x":7.94,"y":0.21},{"duration":15,"tweenEasing":0,"x":-0.18,"y":0.53},{"duration":3,"tweenEasing":0,"x":-2.9,"y":-0.6},{"duration":3,"tweenEasing":0,"x":1.72,"y":1.3},{"duration":12,"tweenEasing":0,"x":4.92,"y":0.26},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":57.33},{"duration":3,"tweenEasing":0,"rotate":-11.62},{"duration":15,"tweenEasing":0,"rotate":-161.51},{"duration":3,"tweenEasing":0,"rotate":177.69},{"duration":3,"tweenEasing":0,"rotate":-129.73},{"duration":12,"tweenEasing":0,"rotate":-7.29},{"duration":0}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":3,"tweenEasing":0,"x":1.1},{"duration":15}]},{"name":"head","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":5.58,"y":5.97},{"duration":3,"tweenEasing":0,"x":8.94,"y":8.11},{"duration":15,"tweenEasing":0,"x":-8.84,"y":0.61},{"duration":3,"tweenEasing":0,"x":-9.28,"y":-1},{"duration":3,"tweenEasing":0,"x":-4.25,"y":-0.36},{"duration":12,"tweenEasing":0,"x":4.59,"y":3.9},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":5.13},{"duration":3,"tweenEasing":0,"rotate":4.91},{"duration":15,"tweenEasing":0,"rotate":-41.98},{"duration":3,"tweenEasing":0,"rotate":-28.02},{"duration":3,"tweenEasing":0,"rotate":-19.11},{"duration":12,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":3.56,"y":2.23},{"duration":3,"tweenEasing":0,"x":5.16,"y":3.53},{"duration":15,"tweenEasing":0,"x":-11.15,"y":-1.1},{"duration":3,"tweenEasing":0,"x":-10.46,"y":-2.84},{"duration":3,"tweenEasing":0,"x":-4.45,"y":-0.43},{"duration":12,"tweenEasing":0,"x":3.48,"y":2.71},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-41.75},{"duration":3,"tweenEasing":0,"rotate":-5.66},{"duration":15,"tweenEasing":0,"rotate":-45.17},{"duration":3,"tweenEasing":0,"rotate":-39.69},{"duration":3,"tweenEasing":0,"rotate":-53.59},{"duration":12,"tweenEasing":0,"rotate":-18.74},{"duration":0}]},{"name":"body","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.45,"y":1.64},{"duration":3,"tweenEasing":0,"x":0.03,"y":1.08},{"duration":9,"tweenEasing":0,"x":-1.44,"y":-0.71},{"duration":6,"tweenEasing":0,"x":-1.68,"y":-0.49},{"duration":3,"tweenEasing":0,"x":-1.84,"y":-0.35},{"duration":3,"tweenEasing":0,"x":-0.61,"y":-0.37},{"duration":12,"tweenEasing":0,"x":0.05,"y":1.11},{"duration":0}],"rotateFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":18.08},{"duration":3,"tweenEasing":0,"rotate":32.5},{"duration":9,"tweenEasing":0,"rotate":-28.34},{"duration":6,"tweenEasing":0,"rotate":-25.65},{"duration":3,"tweenEasing":0,"rotate":-23.86},{"duration":3,"tweenEasing":0,"rotate":-17.88},{"duration":12,"tweenEasing":0,"rotate":17.51},{"duration":0}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.09},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.24},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.32},{"duration":3,"tweenEasing":0,"y":-0.32},{"duration":15}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":27,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.9,"y":1.2},{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.2},{"duration":3,"tweenEasing":0,"x":1.2},{"duration":15}]},{"name":"rightHand","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":15,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":3,"tweenEasing":0,"x":-1.3,"y":-0.62},{"duration":18,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":12,"tweenEasing":0,"x":-1.21,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-30.35},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":15,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":-31.82},{"duration":3,"tweenEasing":0,"rotate":-28.66},{"duration":15,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-40.03},{"duration":3,"tweenEasing":0,"rotate":-57.07},{"duration":12,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":15,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":3,"tweenEasing":0,"x":1.56,"y":-1.53},{"duration":15,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":-0.55,"y":0.89},{"duration":3,"tweenEasing":0,"x":0.27,"y":0.58},{"duration":12,"tweenEasing":0,"x":0.62,"y":-1.61},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-42.6},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":15,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-53.33},{"duration":3,"tweenEasing":0,"rotate":-61.03},{"duration":15,"tweenEasing":0,"rotate":-60.6},{"duration":3,"tweenEasing":0,"rotate":-55.76},{"duration":3,"tweenEasing":0,"rotate":-28.53},{"duration":12,"tweenEasing":0,"rotate":-48.05},{"duration":0,"rotate":21.7}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":6,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.07,"y":1.07},{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":1.06,"y":1.06},{"duration":0}]},{"name":"rightArm","translateFrame":[{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":15,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":3.52,"y":0.28},{"duration":3,"tweenEasing":0,"x":4.23,"y":2.19},{"duration":15,"tweenEasing":0,"x":-4.97,"y":-2.79},{"duration":3,"tweenEasing":0,"x":-5.28,"y":-3.39},{"duration":3,"tweenEasing":0,"x":-3.67,"y":-0.35},{"duration":12,"tweenEasing":0,"x":2.15,"y":1.63},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":15,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":108.8},{"duration":3,"tweenEasing":0,"rotate":68.96},{"duration":15,"tweenEasing":0,"rotate":-61.71},{"duration":3,"tweenEasing":0,"rotate":-119.79},{"duration":3,"tweenEasing":0,"rotate":-76.68},{"duration":12,"tweenEasing":0,"rotate":31.95},{"duration":0,"rotate":-6.67}],"scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":36,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":1.1,"y":-1.1},{"duration":3,"tweenEasing":0,"x":1.2,"y":-1.1},{"duration":3,"tweenEasing":0,"y":-1},{"duration":12}]}],"slot":[{"name":"effect5","displayFrame":[{"duration":18,"value":-1},{"duration":156},{"duration":0,"value":-1}],"colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect4","displayFrame":[{"duration":12,"value":-1},{"duration":159},{"duration":3,"value":-1}],"colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":9,"value":-1},{"duration":162},{"duration":3,"value":-1}],"colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":6,"value":-1},{"duration":162},{"duration":6,"value":-1}],"colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"rightHand","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"rightFrontArm","displayFrame":[{"duration":21},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":42},{"duration":18,"value":-1},{"duration":15}],"colorFrame":[{"duration":18,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":42,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":39,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":15}]},{"name":"backLight","displayFrame":[{"duration":174,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":174,"value":-1}]}]},{"duration":34,"name":"Atk1","bone":[{"name":"effect4","translateFrame":[{"duration":4,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-9.1,"y":6.7},{"duration":8,"tweenEasing":0,"x":-17.8,"y":1.8},{"duration":8,"tweenEasing":0,"x":-24,"y":0.4},{"duration":6,"x":-30.6}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-105.08},{"duration":8,"tweenEasing":0,"rotate":-96.73},{"duration":8,"tweenEasing":0,"rotate":-69.9},{"duration":6,"rotate":-94.04}]},{"name":"effect3","translateFrame":[{"duration":2,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":4,"tweenEasing":0,"x":-14.66,"y":10.66},{"duration":10,"tweenEasing":0,"x":-23.07,"y":6},{"duration":8,"tweenEasing":0,"x":-26.93,"y":9.46},{"duration":10,"x":-31.07,"y":7.33}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-108.91},{"duration":10,"tweenEasing":0,"rotate":-108.91},{"duration":8,"tweenEasing":0,"rotate":-127.09},{"duration":10,"rotate":-108.09}]},{"name":"effect2","translateFrame":[{"duration":2,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":6,"tweenEasing":0,"x":-4.54,"y":13.2},{"duration":10,"tweenEasing":0,"x":-13.6,"y":2.8},{"duration":4,"tweenEasing":0,"x":-23.46,"y":-4.26},{"duration":12,"x":-27.46,"y":-5.46}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":31.2},{"duration":6,"tweenEasing":0,"rotate":31.2},{"duration":10,"tweenEasing":0,"rotate":-0.05},{"duration":4,"tweenEasing":0,"rotate":-26.91},{"duration":12,"rotate":-24.71}]},{"name":"leftHand","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.01,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.1,"y":0.49},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-12.3},{"duration":8,"tweenEasing":0,"rotate":18.53},{"duration":8,"tweenEasing":0,"rotate":-9},{"duration":8,"tweenEasing":0,"rotate":9.5},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.71,"y":0.04},{"duration":8,"tweenEasing":0,"x":0.18,"y":0.12},{"duration":8,"tweenEasing":0,"x":0.69,"y":-0.78},{"duration":8,"tweenEasing":0,"x":0.2,"y":0.24},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":13.83},{"duration":8,"tweenEasing":0,"rotate":25.06},{"duration":8,"tweenEasing":0,"rotate":17.69},{"duration":8,"tweenEasing":0,"rotate":12.39},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-2.88,"y":-0.6},{"duration":8,"tweenEasing":0,"x":8.4,"y":-0.74},{"duration":8,"tweenEasing":0,"x":8.01,"y":-0.58},{"duration":8,"tweenEasing":0,"x":1.14,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":40},{"duration":8,"tweenEasing":0,"rotate":-12.39},{"duration":8,"tweenEasing":0,"rotate":4.99},{"duration":8,"tweenEasing":0,"rotate":8.69},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.42,"y":-1.95},{"duration":8,"tweenEasing":0,"x":12.95,"y":0.1},{"duration":8,"tweenEasing":0,"x":12.47,"y":0.42},{"duration":8,"tweenEasing":0,"x":1.5,"y":-2.19},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":66.79},{"duration":8,"tweenEasing":0,"rotate":-95.1},{"duration":8,"tweenEasing":0,"rotate":-98.37},{"duration":8,"tweenEasing":0,"rotate":-44.89},{"duration":0}]},{"name":"head","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-4.17,"y":0.46},{"duration":8,"tweenEasing":0,"x":9.35,"y":1.83},{"duration":8,"tweenEasing":0,"x":8.79,"y":2.23},{"duration":8,"tweenEasing":0,"x":1.23,"y":0.91},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":15.73},{"duration":8,"tweenEasing":0,"rotate":2.95},{"duration":8,"tweenEasing":0,"rotate":2.83},{"duration":8,"tweenEasing":0,"rotate":0.01},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-3.63,"y":-0.73},{"duration":8,"tweenEasing":0,"x":6.29,"y":2.04},{"duration":8,"tweenEasing":0,"x":6.13,"y":2.27},{"duration":8,"tweenEasing":0,"x":0.4,"y":0.34},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.02},{"duration":8,"tweenEasing":0,"rotate":-27.15},{"duration":8,"tweenEasing":0,"rotate":-15.36},{"duration":8,"tweenEasing":0,"rotate":3.41},{"duration":0}]},{"name":"body","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":-1.47,"y":-1.01},{"duration":8,"tweenEasing":0,"x":1.27,"y":-0.09},{"duration":8,"tweenEasing":0,"x":1.44,"y":0.23},{"duration":8,"tweenEasing":0,"y":0.4},{"duration":0}],"rotateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":-11.15},{"duration":8,"tweenEasing":0,"rotate":29.43},{"duration":8,"tweenEasing":0,"rotate":30.7},{"duration":8,"tweenEasing":0,"rotate":1.09},{"duration":0}],"scaleFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":14,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.03},{"duration":4,"tweenEasing":0,"y":-0.16},{"duration":2,"tweenEasing":0,"y":-0.16},{"duration":0}],"scaleFrame":[{"duration":4,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.3},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":4,"tweenEasing":0,"x":1.01,"y":1.1},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.01,"y":0.9},{"duration":4,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":2,"tweenEasing":0,"x":1.1,"y":1.1},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":2,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.97,"y":-0.2},{"duration":8,"tweenEasing":0,"x":-0.54,"y":-0.17},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":11.7},{"duration":2,"tweenEasing":0,"rotate":-34.26},{"duration":8,"tweenEasing":0,"rotate":-8.09},{"duration":8,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-12.04},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":2,"tweenEasing":0,"x":-0.7,"y":0.18},{"duration":8,"tweenEasing":0,"x":-0.34,"y":0.12},{"duration":8,"tweenEasing":0,"x":-0.44,"y":0.07},{"duration":8,"tweenEasing":0,"x":0.31,"y":0.26},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":21.7},{"duration":2,"tweenEasing":0,"rotate":-36.51},{"duration":8,"tweenEasing":0,"rotate":-41.51},{"duration":8,"tweenEasing":0,"rotate":-50.9},{"duration":8,"tweenEasing":0,"rotate":-42.18},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":8,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":2,"tweenEasing":0,"x":-2.96,"y":-0.32},{"duration":8,"tweenEasing":0,"x":1.4,"y":3.87},{"duration":8,"tweenEasing":0,"x":1.48,"y":4.19},{"duration":8,"tweenEasing":0,"x":-3.83,"y":-3.08},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":8,"tweenEasing":0,"rotate":-6.67},{"duration":2,"tweenEasing":0,"rotate":8.81},{"duration":8,"tweenEasing":0,"rotate":7.26},{"duration":8,"tweenEasing":0,"rotate":15.7},{"duration":8,"tweenEasing":0,"rotate":25.83},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect4","displayFrame":[{"duration":4,"value":-1},{"duration":26},{"duration":4,"value":-1}],"colorFrame":[{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0,"value":{"aM":0}},{"duration":8,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect3","displayFrame":[{"duration":2,"value":-1},{"duration":24},{"duration":8,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":4,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":8,"tweenEasing":0},{"duration":10,"value":{"aM":0}}]},{"name":"effect2","displayFrame":[{"duration":2,"value":-1},{"duration":22},{"duration":10,"value":-1}],"colorFrame":[{"duration":2,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":10,"tweenEasing":0},{"duration":4,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":34,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":34,"value":-1}]}]},{"duration":18,"name":"Atked1","bone":[{"name":"effect6","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.52,"y":1.72},{"duration":3,"tweenEasing":0,"x":-0.66,"y":-0.23},{"duration":6,"tweenEasing":0,"x":3.25,"y":-1.37},{"duration":3,"x":4.8,"y":-6.29}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"rotate":-20.99}]},{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-4.5,"y":3.8},{"duration":3,"tweenEasing":0,"x":-10.13,"y":-1.13},{"duration":9,"tweenEasing":0,"x":-11.84,"y":-6.3},{"duration":0,"x":-24,"y":-16.3}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-9.48},{"duration":3,"tweenEasing":0,"rotate":-12.21},{"duration":9,"rotate":-14.93}]},{"name":"effect3","translateFrame":[{"duration":6,"tweenEasing":0,"x":-3.68,"y":5.44},{"duration":3,"tweenEasing":0,"x":-0.76,"y":-7.24},{"duration":6,"tweenEasing":0,"x":1.84,"y":-9.36},{"duration":3,"x":6.56,"y":-13.6}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-20.49},{"duration":6,"tweenEasing":0,"rotate":-21.44},{"duration":3,"rotate":-23.34}]},{"name":"effect2","translateFrame":[{"duration":6,"tweenEasing":0,"x":2.72,"y":0.96},{"duration":3,"tweenEasing":0,"x":-6.04,"y":-7.24},{"duration":9,"tweenEasing":0,"x":-6.73,"y":-8.87},{"duration":0,"x":-9.44,"y":-13.76}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":55.47},{"duration":9,"tweenEasing":0,"rotate":51.89},{"duration":0,"rotate":41.14}]},{"name":"leftHand","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.01,"y":-0.23},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-26.56},{"duration":9,"tweenEasing":0,"rotate":-11.41},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":6.05},{"duration":9,"tweenEasing":0,"rotate":-2.27},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.15,"y":2.3},{"duration":9,"tweenEasing":0,"x":-3.52,"y":1.7},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":22.93},{"duration":9,"tweenEasing":0,"rotate":-13.8},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.16,"y":1.05},{"duration":9,"tweenEasing":0,"x":-2.29,"y":0.44},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-15.21},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0}]},{"name":"head","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.98,"y":2.9},{"duration":9,"tweenEasing":0,"x":-2.31,"y":0.72},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":20.08},{"duration":9,"tweenEasing":0,"rotate":-25.26},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-3.02,"y":0.27},{"duration":9,"tweenEasing":0,"x":-2.56,"y":-0.29},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-17.61},{"duration":9,"tweenEasing":0,"rotate":-22.45},{"duration":0}]},{"name":"body","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-2.1,"y":1.19},{"duration":9,"tweenEasing":0,"x":0.4,"y":0.88},{"duration":0}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"rotate":-5.23},{"duration":9,"tweenEasing":0,"rotate":-13.28},{"duration":0}],"scaleFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-1.64,"y":0.12},{"duration":9,"tweenEasing":0,"x":0.32,"y":-0.04},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":3,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":11.7},{"duration":3,"tweenEasing":0,"rotate":13.63},{"duration":9,"tweenEasing":0,"rotate":6.92},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.22,"y":-0.36},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":21.7},{"duration":3,"tweenEasing":0,"rotate":-6.33},{"duration":9,"tweenEasing":0,"rotate":14.55},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":3,"tweenEasing":0,"x":-2.48,"y":2.58},{"duration":9,"tweenEasing":0,"x":-1.94,"y":0.96},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.67},{"duration":3,"tweenEasing":0,"rotate":-17.02},{"duration":9,"tweenEasing":0,"rotate":-28.28},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":66}},{"duration":6,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":49}},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":18,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":18,"value":-1}]}]},{"duration":78,"name":"Dying","bone":[{"name":"effect5","translateFrame":[{"duration":24,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":18,"tweenEasing":0,"x":7.2,"y":1.72},{"duration":15,"tweenEasing":0,"x":3.2,"y":-5.14},{"duration":15,"tweenEasing":0,"x":4.23,"y":-11.54},{"duration":6,"x":0.57,"y":-16.23}],"rotateFrame":[{"duration":42,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":30.08},{"duration":15,"tweenEasing":0,"rotate":46.89},{"duration":6,"rotate":26.37}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":15,"tweenEasing":0,"x":-1.6,"y":0.8},{"duration":18,"tweenEasing":0,"x":0.12,"y":-12.12},{"duration":18,"tweenEasing":0,"x":-4.34,"y":-19.77},{"duration":9,"x":-5.8,"y":-24.16}],"rotateFrame":[{"duration":18,"tweenEasing":0,"rotate":20.94},{"duration":15,"tweenEasing":0,"rotate":20.94},{"duration":18,"tweenEasing":0,"rotate":-3.4},{"duration":18,"tweenEasing":0,"rotate":-10.49},{"duration":9,"rotate":-4.63}]},{"name":"effect3","translateFrame":[{"duration":27,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":12,"tweenEasing":0,"x":-3.06,"y":11.2},{"duration":18,"tweenEasing":0,"x":-1.38,"y":-2.44},{"duration":12,"tweenEasing":0,"x":4.45,"y":-9.82},{"duration":9,"x":11.24,"y":-11.69}],"rotateFrame":[{"duration":27,"tweenEasing":0,"rotate":31.61},{"duration":12,"tweenEasing":0,"rotate":31.61},{"duration":18,"tweenEasing":0,"rotate":-12.51},{"duration":12,"tweenEasing":0,"rotate":-13.38},{"duration":9,"rotate":9.35}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":2,"y":3.06},{"duration":9,"tweenEasing":0,"x":0.54,"y":-3.87},{"duration":15,"tweenEasing":0,"x":-6.54,"y":-10.13},{"duration":24,"x":-20.27,"y":-14.8}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":29.59},{"duration":15,"tweenEasing":0,"rotate":2.18},{"duration":24,"rotate":-22.33}]},{"name":"leftHand","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":6,"tweenEasing":0,"x":0.05,"y":0.23},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.21},{"duration":42,"x":-0.33,"y":-0.04}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-7.81},{"duration":3,"tweenEasing":0,"rotate":3.01},{"duration":6,"tweenEasing":0,"rotate":3.01},{"duration":9,"tweenEasing":0,"rotate":-18.54},{"duration":3,"tweenEasing":0,"rotate":-18.54},{"duration":24,"tweenEasing":0,"rotate":6.38},{"duration":6,"tweenEasing":0,"rotate":6.38},{"duration":12,"rotate":11.01}]},{"name":"leftFrontArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":6,"tweenEasing":0,"x":0.68,"y":-0.95},{"duration":9,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":3,"tweenEasing":0,"x":0.65,"y":-1.15},{"duration":15,"tweenEasing":0,"x":0.15,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.83,"y":0.94},{"duration":6,"tweenEasing":0,"x":0.64,"y":-3.63},{"duration":12,"x":0.49,"y":-4.08}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-33.88},{"duration":3,"tweenEasing":0,"rotate":-26.38},{"duration":6,"tweenEasing":0,"rotate":-26.38},{"duration":9,"tweenEasing":0,"rotate":-47.87},{"duration":3,"tweenEasing":0,"rotate":-65.3},{"duration":15,"tweenEasing":0,"rotate":46.32},{"duration":9,"tweenEasing":0,"rotate":15},{"duration":6,"tweenEasing":0,"rotate":113.18},{"duration":12,"rotate":106.03}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"leftShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.92,"y":0.22},{"duration":3,"tweenEasing":0,"x":3.65,"y":-0.2},{"duration":6,"tweenEasing":0,"x":3.65,"y":0.04},{"duration":9,"tweenEasing":0,"x":5.47,"y":0.93},{"duration":3,"tweenEasing":0,"x":5.34,"y":-0.94},{"duration":15,"tweenEasing":0,"x":-1,"y":-5.83},{"duration":9,"tweenEasing":0,"x":-4.61,"y":-8.44},{"duration":6,"tweenEasing":0,"x":-0.2,"y":19},{"duration":12,"tweenEasing":0,"x":-1.65,"y":17.16},{"duration":0,"x":-1.65,"y":18.77}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":13.57},{"duration":3,"tweenEasing":0,"rotate":24.2},{"duration":6,"tweenEasing":0,"rotate":16.88},{"duration":9,"tweenEasing":0,"rotate":10.9},{"duration":3,"tweenEasing":0,"rotate":16.99},{"duration":15,"tweenEasing":0,"rotate":-5.17},{"duration":9,"tweenEasing":0,"rotate":-12.82},{"duration":6,"tweenEasing":0,"rotate":-8.56},{"duration":12,"tweenEasing":0,"rotate":-2.65},{"duration":0,"rotate":-7.04}]},{"name":"leftArm","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":3,"tweenEasing":0,"x":3.38,"y":-2.55},{"duration":6,"tweenEasing":0,"x":3.38,"y":-2.31},{"duration":9,"tweenEasing":0,"x":6.04,"y":-0.88},{"duration":3,"tweenEasing":0,"x":5.92,"y":-2.75},{"duration":15,"tweenEasing":0,"x":0.43,"y":-5.91},{"duration":9,"tweenEasing":0,"x":1.24,"y":-0.91},{"duration":6,"tweenEasing":0,"x":1.44,"y":14.13},{"duration":12,"tweenEasing":0,"x":0.64,"y":12.94},{"duration":0,"x":0.8,"y":13.73}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":0.58},{"duration":3,"tweenEasing":0,"rotate":4.94},{"duration":6,"tweenEasing":0,"rotate":4.94},{"duration":9,"tweenEasing":0,"rotate":10.19},{"duration":3,"tweenEasing":0,"rotate":25.77},{"duration":15,"tweenEasing":0,"rotate":-11.12},{"duration":9,"tweenEasing":0,"rotate":-2.99},{"duration":18,"rotate":-14.6}]},{"name":"head","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":4.09,"y":3.06},{"duration":3,"tweenEasing":0,"x":3.85,"y":2.9},{"duration":6,"tweenEasing":0,"x":3.85,"y":3.14},{"duration":9,"tweenEasing":0,"x":4.46,"y":5.23},{"duration":3,"tweenEasing":0,"x":4.79,"y":5.7},{"duration":15,"tweenEasing":0,"x":-1.35,"y":-7.2},{"duration":9,"tweenEasing":0,"x":-0.62,"y":-11.06},{"duration":6,"tweenEasing":0,"x":-1.1,"y":18.3},{"duration":12,"tweenEasing":0,"x":-2.54,"y":16.94},{"duration":0,"x":0.02,"y":21.42}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":29.23},{"duration":3,"tweenEasing":0,"rotate":8.49},{"duration":6,"tweenEasing":0,"rotate":13.15},{"duration":9,"tweenEasing":0,"rotate":15.69},{"duration":3,"tweenEasing":0,"rotate":15.69},{"duration":15,"tweenEasing":0,"rotate":-29.7},{"duration":9,"tweenEasing":0,"rotate":-25.43},{"duration":6,"tweenEasing":0,"rotate":-25.43},{"duration":12,"tweenEasing":0,"rotate":11.43},{"duration":0,"rotate":-13.96}]},{"name":"rightShoulder","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":3,"tweenEasing":0,"x":3.03,"y":0.59},{"duration":6,"tweenEasing":0,"x":3.03,"y":0.83},{"duration":9,"tweenEasing":0,"x":3.4,"y":1.55},{"duration":3,"tweenEasing":0,"x":3.26,"y":-0.84},{"duration":15,"tweenEasing":0,"x":-2.59,"y":-8.54},{"duration":9,"tweenEasing":0,"x":-0.19,"y":-6.93},{"duration":6,"tweenEasing":0,"x":-1.19,"y":16.3},{"duration":12,"tweenEasing":0,"x":-0.23,"y":16.86},{"duration":0,"x":-0.23,"y":19.27}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"rotate":-2.21},{"duration":3,"tweenEasing":0,"rotate":-17.5},{"duration":6,"tweenEasing":0,"rotate":-5.8},{"duration":9,"tweenEasing":0,"rotate":7.6},{"duration":3,"tweenEasing":0,"rotate":-0.59},{"duration":15,"tweenEasing":0,"rotate":-0.22},{"duration":9,"tweenEasing":0,"rotate":-16.47},{"duration":6,"tweenEasing":0,"rotate":20.03},{"duration":12,"rotate":10.97}]},{"name":"body","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":-0.09,"y":0.24},{"duration":3,"tweenEasing":0,"x":-0.17,"y":0.09},{"duration":6,"tweenEasing":0,"x":-0.17,"y":0.33},{"duration":9,"tweenEasing":0,"x":-0.09,"y":1.13},{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.74},{"duration":15,"tweenEasing":0,"x":1.18,"y":-7.26},{"duration":9,"tweenEasing":0,"x":1.65,"y":-4.2},{"duration":6,"tweenEasing":0,"x":4.98,"y":12.38},{"duration":12,"tweenEasing":0,"x":5.3,"y":9.58},{"duration":0,"x":5.46,"y":10.7}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.08},{"duration":6,"tweenEasing":0,"rotate":18.08},{"duration":9,"tweenEasing":0,"rotate":21.06},{"duration":3,"tweenEasing":0,"rotate":22.64},{"duration":15,"tweenEasing":0,"rotate":-10.59},{"duration":9,"tweenEasing":0,"rotate":-22.36},{"duration":6,"tweenEasing":0,"rotate":-49.93},{"duration":12,"tweenEasing":0,"rotate":-57.44},{"duration":0,"rotate":-66.41}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.96},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.06},{"duration":3,"tweenEasing":0,"x":1.01,"y":1.16},{"duration":15,"tweenEasing":0},{"duration":27,"y":0.9}]},{"name":"leg","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-0.42},{"duration":9,"tweenEasing":0,"x":-0.42},{"duration":3,"tweenEasing":0,"x":-0.26,"y":-0.32},{"duration":15,"tweenEasing":0,"x":-0.26,"y":-1.92},{"duration":6,"tweenEasing":0,"x":-0.26,"y":-2.64},{"duration":21,"x":-0.26,"y":-1.76}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.25},{"duration":6,"tweenEasing":0,"x":0.95,"y":0.85},{"duration":9,"tweenEasing":0,"x":1.05,"y":1.05},{"duration":3,"tweenEasing":0,"x":1.25,"y":1.05},{"duration":15,"tweenEasing":0,"x":1.85,"y":1.05},{"duration":6,"tweenEasing":0,"x":2.15,"y":1.05},{"duration":21,"x":1.55,"y":1.05}]},{"name":"rightHand","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":6,"tweenEasing":0,"x":-0.77,"y":-0.38},{"duration":27,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":9,"tweenEasing":0,"x":-1.12,"y":-0.8},{"duration":18,"x":-0.52,"y":-0.81}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":11.7},{"duration":6,"tweenEasing":0,"rotate":23.26},{"duration":3,"tweenEasing":0,"rotate":-19.83},{"duration":6,"tweenEasing":0,"rotate":-19.83},{"duration":9,"tweenEasing":0,"rotate":23.75},{"duration":3,"tweenEasing":0,"rotate":20.82},{"duration":15,"tweenEasing":0,"rotate":-5.18},{"duration":9,"tweenEasing":0,"rotate":22.15},{"duration":6,"tweenEasing":0,"rotate":-22.3},{"duration":12,"tweenEasing":0,"rotate":-45.66},{"duration":0,"rotate":-37}]},{"name":"rightFrontArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":6,"tweenEasing":0,"x":-0.6,"y":-0.08},{"duration":12,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":15,"tweenEasing":0,"x":-0.66,"y":-0.14},{"duration":9,"tweenEasing":0,"x":-1.47,"y":-1.53},{"duration":6,"tweenEasing":0,"x":-3.21,"y":1.78},{"duration":12,"tweenEasing":0,"x":-2.78,"y":2.31},{"duration":0,"x":-3.77,"y":2.53}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":21.7},{"duration":6,"tweenEasing":0,"rotate":59.44},{"duration":3,"tweenEasing":0,"rotate":75.81},{"duration":6,"tweenEasing":0,"rotate":75.81},{"duration":9,"tweenEasing":0,"rotate":75.52},{"duration":3,"tweenEasing":0,"rotate":94.88},{"duration":15,"tweenEasing":0,"rotate":-2.28},{"duration":9,"tweenEasing":0,"rotate":12.05},{"duration":6,"tweenEasing":0,"rotate":12.5},{"duration":12,"tweenEasing":0,"rotate":17.33},{"duration":0,"rotate":11.94}],"scaleFrame":[{"duration":9,"tweenEasing":0},{"duration":69,"x":1.05,"y":1.05}]},{"name":"rightArm","translateFrame":[{"duration":9,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":6,"tweenEasing":0,"x":3.9,"y":0.71},{"duration":3,"tweenEasing":0,"x":3.42,"y":0.4},{"duration":6,"tweenEasing":0,"x":3.42,"y":0.64},{"duration":9,"tweenEasing":0,"x":3.25,"y":1.44},{"duration":3,"tweenEasing":0,"x":3.12,"y":-0.43},{"duration":15,"tweenEasing":0,"x":-0.94,"y":-5.88},{"duration":9,"tweenEasing":0,"x":0.06,"y":0.45},{"duration":6,"tweenEasing":0,"x":-2.26,"y":21.07},{"duration":12,"tweenEasing":0,"x":-3.06,"y":19.87},{"duration":0,"x":-2.9,"y":20.67}],"rotateFrame":[{"duration":9,"tweenEasing":0,"rotate":-6.67},{"duration":6,"tweenEasing":0,"rotate":2.1},{"duration":3,"tweenEasing":0,"rotate":1.1},{"duration":6,"tweenEasing":0,"rotate":1.1},{"duration":9,"tweenEasing":0,"rotate":-6.84},{"duration":3,"tweenEasing":0,"rotate":-18.94},{"duration":15,"tweenEasing":0,"rotate":15.53},{"duration":9,"tweenEasing":0,"rotate":-13.72},{"duration":18,"rotate":-52.69}]},{"name":"backLight","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"y":-3.65},{"duration":9,"tweenEasing":0,"y":-6.4},{"duration":6,"tweenEasing":0,"y":-6.4},{"duration":27,"x":0.4,"y":-20.8}],"scaleFrame":[{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":12,"tweenEasing":0,"x":0.69,"y":0.5},{"duration":9,"tweenEasing":0,"x":1.56,"y":1.71},{"duration":6,"tweenEasing":0,"x":0.6,"y":2.57},{"duration":27,"x":0.11,"y":2.79}]}],"slot":[{"name":"effect5","colorFrame":[{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":12,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":9,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"leftArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"head","displayFrame":[{"duration":78,"value":1}]},{"name":"rightArm","colorFrame":[{"duration":36,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":12}]},{"name":"backLight","colorFrame":[{"duration":12,"tweenEasing":0,"value":{"aM":0}},{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":30,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":27,"value":{"aM":0}}]},{"name":"effect6","displayFrame":[{"duration":78,"value":-1}]}]},{"duration":72,"playTimes":0,"name":"Atked2","bone":[{"name":"effect4","translateFrame":[{"duration":3,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":18,"tweenEasing":0,"x":-9.24,"y":3.38},{"duration":21,"tweenEasing":0,"x":-8,"y":-5.07},{"duration":21,"tweenEasing":0,"x":-12.36,"y":-12.18},{"duration":9,"x":-12.27,"y":-18.84}],"rotateFrame":[{"duration":3,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-28.4},{"duration":21,"tweenEasing":0,"rotate":-16.18},{"duration":9,"rotate":-31.27}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":24,"tweenEasing":0,"x":-0.94,"y":5.33},{"duration":21,"tweenEasing":0,"x":1.63,"y":-8.11},{"duration":18,"tweenEasing":0,"x":0.34,"y":-14.59},{"duration":0,"x":0.58,"y":-17.3}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-39.38},{"duration":18,"rotate":-22.72}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":2,"y":-8.5},{"duration":24,"tweenEasing":0,"x":0.5,"y":-14.6},{"duration":3,"x":-0.1,"y":-19.9}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":29.43},{"duration":24,"tweenEasing":0,"rotate":65.43},{"duration":24,"tweenEasing":0,"rotate":44.46},{"duration":3,"rotate":60}]},{"name":"leftHand","rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":15.92},{"duration":24,"tweenEasing":0,"rotate":12.42},{"duration":24,"tweenEasing":0,"rotate":-2.24},{"duration":0,"rotate":15.92}]},{"name":"leftFrontArm","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":-0.3,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.06},{"duration":24,"tweenEasing":0,"rotate":26.02},{"duration":24,"tweenEasing":0,"rotate":16.87},{"duration":0,"rotate":29.06}]},{"name":"leftShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.06,"y":-0.8},{"duration":24,"tweenEasing":0,"x":2.73,"y":-0.64},{"duration":24,"tweenEasing":0,"x":3.04,"y":-0.99},{"duration":0,"x":2.06,"y":-0.8}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-12.27},{"duration":24,"tweenEasing":0,"rotate":-15.89},{"duration":24,"tweenEasing":0,"rotate":-12.23},{"duration":0,"rotate":-12.27}]},{"name":"leftArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.4,"y":0.46},{"duration":24,"tweenEasing":0,"x":2.54,"y":0.65},{"duration":0,"x":2.4,"y":0.46}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":-23.09},{"duration":24,"tweenEasing":0,"rotate":-31.16},{"duration":24,"tweenEasing":0,"rotate":-21.98},{"duration":0,"rotate":-23.09}]},{"name":"head","translateFrame":[{"duration":24,"tweenEasing":0,"x":2.1,"y":2.36},{"duration":24,"tweenEasing":0,"x":3.17,"y":2.85},{"duration":24,"tweenEasing":0,"x":3.07,"y":2.85},{"duration":0,"x":2.1,"y":2.36}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":27.28},{"duration":24,"tweenEasing":0,"rotate":21.12},{"duration":24,"tweenEasing":0,"rotate":18.96},{"duration":0,"rotate":27.28}]},{"name":"rightShoulder","translateFrame":[{"duration":24,"tweenEasing":0,"x":1.72,"y":0.12},{"duration":24,"tweenEasing":0,"x":2.73,"y":0.63},{"duration":24,"tweenEasing":0,"x":2.71,"y":0.23},{"duration":0,"x":1.72,"y":0.12}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.3},{"duration":24,"tweenEasing":0,"rotate":9.28},{"duration":24,"tweenEasing":0,"rotate":14.42},{"duration":0,"rotate":13.3}]},{"name":"body","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":0.12,"y":0.12},{"duration":24,"tweenEasing":0,"x":0.25,"y":-0.28},{"duration":0}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":13.71},{"duration":24,"tweenEasing":0,"rotate":17.86},{"duration":24,"tweenEasing":0,"rotate":16.11},{"duration":0,"rotate":13.71}]},{"name":"leg","scaleFrame":[{"duration":18,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0,"y":0.9},{"duration":6,"tweenEasing":0,"y":0.9},{"duration":18,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":6,"tweenEasing":0,"x":1.1,"y":0.8},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":72,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":11.7},{"duration":24,"tweenEasing":0,"rotate":1.26},{"duration":24,"tweenEasing":0,"rotate":-11.03},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":72,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":1.98},{"duration":24,"tweenEasing":0,"rotate":-1.3},{"duration":24,"tweenEasing":0,"rotate":-0.66},{"duration":0,"rotate":1.98}]},{"name":"rightArm","translateFrame":[{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.28,"y":1.58},{"duration":24,"tweenEasing":0,"x":3.54,"y":1.45},{"duration":0,"x":3.28,"y":1.58}],"rotateFrame":[{"duration":24,"tweenEasing":0,"rotate":29.2},{"duration":24,"tweenEasing":0,"rotate":11.66},{"duration":24,"tweenEasing":0,"rotate":23.61},{"duration":0,"rotate":29.2}]}],"slot":[{"name":"effect4","colorFrame":[{"duration":3,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":3,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect5","displayFrame":[{"duration":72,"value":-1}]},{"name":"effect6","displayFrame":[{"duration":72,"value":-1}]}]},{"duration":102,"playTimes":0,"name":"Idle2","bone":[{"name":"effect6","translateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.2,"y":-5.6},{"duration":24,"tweenEasing":0,"x":3.2,"y":-11.9},{"duration":0,"x":7,"y":-15.1}],"rotateFrame":[{"duration":39,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-27.23},{"duration":24,"tweenEasing":0,"rotate":-17.6},{"duration":0,"rotate":-35.03}]},{"name":"effect5","translateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-5.2,"y":-9.12},{"duration":21,"tweenEasing":0,"x":-5.04,"y":-16.4},{"duration":12,"x":-6.4,"y":-19.84}],"rotateFrame":[{"duration":27,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":22.39},{"duration":21,"tweenEasing":0,"rotate":39.5},{"duration":12,"rotate":22.14}]},{"name":"effect4","translateFrame":[{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":4.4,"y":-6.1},{"duration":24,"tweenEasing":0,"x":5.5,"y":-13.8},{"duration":24,"x":6.1,"y":-19.3}],"rotateFrame":[{"duration":33,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"rotate":-24.94},{"duration":24,"rotate":-14.84}]},{"name":"effect3","translateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":2.4,"y":-5.6},{"duration":18,"tweenEasing":0,"x":3.8,"y":-11.1},{"duration":9,"x":4.3,"y":-15.2}],"rotateFrame":[{"duration":36,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-17.53},{"duration":18,"tweenEasing":0,"rotate":-36.39},{"duration":9,"rotate":-23.84}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"x":-2.27,"y":-6.67},{"duration":18,"tweenEasing":0,"x":-1.74,"y":-10.54},{"duration":33,"x":-3.06,"y":-17.46}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":15,"tweenEasing":0,"rotate":20.36},{"duration":18,"tweenEasing":0,"rotate":68.81},{"duration":33,"rotate":27.88}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":0.04,"y":0.18},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":9,"tweenEasing":0,"rotate":-14.11},{"duration":9,"tweenEasing":0,"rotate":-12.3},{"duration":18,"tweenEasing":0,"rotate":-14.11},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":9,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":9,"tweenEasing":0,"x":0.18,"y":0.1},{"duration":18,"tweenEasing":0,"x":0.19,"y":0.15},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":6.55},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-0.86},{"duration":9,"tweenEasing":0,"rotate":-2.77},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":9,"tweenEasing":0,"rotate":3.34},{"duration":9,"tweenEasing":0,"rotate":-6.22},{"duration":18,"tweenEasing":0,"rotate":-2.77},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.15,"y":-0.46},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":9,"tweenEasing":0,"x":-0.1,"y":-0.64},{"duration":9,"tweenEasing":0,"x":0.01,"y":-1.1},{"duration":18,"tweenEasing":0,"x":-0.1,"y":-0.71},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":31.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":37.04},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":9,"tweenEasing":0,"rotate":35.61},{"duration":9,"tweenEasing":0,"rotate":18.96},{"duration":18,"tweenEasing":0,"rotate":31.61},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.2,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.42,"y":-1.18},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-2.19},{"duration":9,"tweenEasing":0,"x":-0.27,"y":-1.81},{"duration":18,"tweenEasing":0,"x":-0.27,"y":-2.27},{"duration":0,"x":-1.2,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":30.08},{"duration":9,"tweenEasing":0,"rotate":22.76},{"duration":9,"tweenEasing":0,"rotate":19.34},{"duration":9,"tweenEasing":0,"rotate":25.64},{"duration":9,"tweenEasing":0,"rotate":20.36},{"duration":9,"tweenEasing":0,"rotate":26.38},{"duration":9,"tweenEasing":0,"rotate":18.94},{"duration":18,"tweenEasing":0,"rotate":22.76},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0,"x":-1.06,"y":0.14},{"duration":9,"tweenEasing":0,"x":-0.14,"y":0.3},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":-0.17},{"duration":9,"tweenEasing":0,"x":0.28,"y":-0.74},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.07},{"duration":9,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":9,"tweenEasing":0,"x":0.34,"y":0.3},{"duration":18,"tweenEasing":0,"x":0.28,"y":-1.06},{"duration":0,"x":-1.06,"y":0.14}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-4.1},{"duration":9,"tweenEasing":0,"rotate":0.06},{"duration":54,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"rotate":-4.1}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":0.51,"y":-0.36},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.3},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":9,"tweenEasing":0,"x":0.86,"y":-1.39},{"duration":9,"tweenEasing":0,"x":0.67,"y":-1},{"duration":18,"tweenEasing":0,"x":0.86,"y":-1.86},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-38.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-39.74},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":9,"tweenEasing":0,"rotate":-45.24},{"duration":9,"tweenEasing":0,"rotate":-30.94},{"duration":18,"tweenEasing":0,"rotate":-38.24},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":-0.16,"y":0.16},{"duration":9,"tweenEasing":0,"y":-0.49},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":9,"tweenEasing":0,"y":-0.73},{"duration":9,"tweenEasing":0,"y":-0.56},{"duration":9,"tweenEasing":0,"y":-0.97},{"duration":9,"tweenEasing":0,"y":-0.48},{"duration":18,"tweenEasing":0,"y":-1.05},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.48},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":9,"tweenEasing":0,"rotate":0.41},{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":0.41},{"duration":0,"rotate":-6.48}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":9,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":9,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":18,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0}]},{"name":"leg","translateFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":30}],"scaleFrame":[{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":24,"tweenEasing":0},{"duration":6,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":1.04,"y":1.1},{"duration":30}]},{"name":"rightHand","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.97,"y":-0.57},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":9,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":9,"tweenEasing":0,"x":-1.05,"y":-0.2},{"duration":18,"tweenEasing":0,"x":-0.85,"y":-0.18},{"duration":0,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":9,"tweenEasing":0,"rotate":10.34},{"duration":9,"tweenEasing":0,"rotate":8.49},{"duration":18,"tweenEasing":0,"rotate":10.34},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":9,"tweenEasing":0,"x":-0.17,"y":0.15},{"duration":9,"tweenEasing":0,"x":-0.45,"y":0.1},{"duration":18,"tweenEasing":0,"x":-0.2,"y":0.01},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":45.22},{"duration":9,"tweenEasing":0,"rotate":48.89},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":9,"tweenEasing":0,"rotate":46.54},{"duration":9,"tweenEasing":0,"rotate":40.53},{"duration":18,"tweenEasing":0,"rotate":48.89},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":9,"tweenEasing":0,"x":0.76,"y":0.39},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.26},{"duration":9,"tweenEasing":0,"x":1.13,"y":-0.75},{"duration":9,"tweenEasing":0,"x":0.92,"y":-0.49},{"duration":18,"tweenEasing":0,"x":1.13,"y":-1.07},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":9,"tweenEasing":0,"rotate":-30.66},{"duration":9,"tweenEasing":0,"rotate":-31.48},{"duration":9,"tweenEasing":0,"rotate":-27.88},{"duration":9,"tweenEasing":0,"rotate":-34.28},{"duration":9,"tweenEasing":0,"rotate":-25.77},{"duration":9,"tweenEasing":0,"rotate":-35.22},{"duration":9,"tweenEasing":0,"rotate":-23.55},{"duration":18,"tweenEasing":0,"rotate":-31.48},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":39,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":27,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":12,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0},{"duration":24,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":36,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0,"value":{"aM":0}},{"duration":15,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":33,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":102,"value":-1}]}]},{"duration":66,"playTimes":0,"name":"Idle1","bone":[{"name":"effect6","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"tweenEasing":0,"x":3.46,"y":-6.84},{"duration":0,"x":5.42,"y":-9.87}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":24,"rotate":-10.38}]},{"name":"effect5","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-4,"y":-3.31},{"duration":15,"tweenEasing":0,"x":-5.03,"y":-8.91},{"duration":9,"x":-5.37,"y":-12.35}],"rotateFrame":[{"duration":6,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":27.97},{"duration":15,"tweenEasing":0,"rotate":-3.77},{"duration":9,"rotate":-10.94}]},{"name":"effect4","translateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":3.88,"y":-6.4},{"duration":21,"tweenEasing":0,"x":6.75,"y":-10.97},{"duration":9,"x":6.51,"y":-13.37}],"rotateFrame":[{"duration":18,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":19.87},{"duration":21,"tweenEasing":0,"rotate":-1.94},{"duration":9,"rotate":-29.35}]},{"name":"effect3","translateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":3.4,"y":-7.87},{"duration":18,"tweenEasing":0,"x":3.13,"y":-14.13},{"duration":0,"x":3.67,"y":-17.86}],"rotateFrame":[{"duration":9,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-25.82},{"duration":18,"tweenEasing":0,"rotate":-13.32},{"duration":0,"rotate":-23.08}]},{"name":"effect2","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"x":-2.32,"y":-5.92},{"duration":21,"tweenEasing":0,"x":-5.84,"y":-9.44},{"duration":6,"x":-7.52,"y":-12}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0,"rotate":35.13},{"duration":21,"tweenEasing":0,"rotate":-4.98},{"duration":6,"rotate":29.58}]},{"name":"leftHand","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":24,"tweenEasing":0,"x":0.29,"y":0.43},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-4.45},{"duration":24,"tweenEasing":0,"rotate":-6.58},{"duration":0}]},{"name":"leftFrontArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":24}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-3.35},{"duration":24,"tweenEasing":0,"rotate":7.11},{"duration":0}]},{"name":"leftShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":24,"tweenEasing":0,"x":-0.08,"y":-0.56},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":13.8},{"duration":24,"tweenEasing":0,"rotate":4.52},{"duration":0}]},{"name":"leftArm","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.1,"y":-0.99},{"duration":24,"tweenEasing":0,"x":0.18,"y":-0.92},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":16.02},{"duration":24,"tweenEasing":0,"rotate":12.08},{"duration":0}]},{"name":"head","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":-0.16,"y":-0.69},{"duration":24,"tweenEasing":0,"y":-0.45},{"duration":0}]},{"name":"rightShoulder","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":0.32,"y":-1.9},{"duration":24,"tweenEasing":0,"x":0.32,"y":-0.78},{"duration":0}],"rotateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"rotate":-10.95},{"duration":24,"tweenEasing":0,"rotate":-8.38},{"duration":0}]},{"name":"body","translateFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"y":-0.72},{"duration":24,"tweenEasing":0,"x":0.08,"y":-0.32},{"duration":0}],"scaleFrame":[{"duration":21,"tweenEasing":0},{"duration":21,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":24,"tweenEasing":0,"x":1.03,"y":1.03},{"duration":0}]},{"name":"rightHand","translateFrame":[{"duration":66,"x":-0.97,"y":-0.57}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":11.7},{"duration":21,"tweenEasing":0,"rotate":16.12},{"duration":24,"tweenEasing":0,"rotate":15.51},{"duration":0,"rotate":11.7}]},{"name":"rightFrontArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":-0.15,"y":-0.01},{"duration":21,"tweenEasing":0,"x":-0.09,"y":0.52},{"duration":24,"tweenEasing":0,"x":-0.07,"y":0.13},{"duration":0,"x":-0.15,"y":-0.01}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":21.7},{"duration":21,"tweenEasing":0,"rotate":45.3},{"duration":24,"tweenEasing":0,"rotate":32.17},{"duration":0,"rotate":21.7}]},{"name":"rightArm","translateFrame":[{"duration":21,"tweenEasing":0,"x":0.88,"y":1.24},{"duration":21,"tweenEasing":0,"x":0.74,"y":0.46},{"duration":24,"tweenEasing":0,"x":1.06,"y":0.7},{"duration":0,"x":0.88,"y":1.24}],"rotateFrame":[{"duration":21,"tweenEasing":0,"rotate":-6.67},{"duration":21,"tweenEasing":0,"rotate":-26.33},{"duration":24,"tweenEasing":0,"rotate":-19.75},{"duration":0,"rotate":-6.67}]}],"slot":[{"name":"effect6","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":24,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect5","colorFrame":[{"duration":6,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":15,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect4","colorFrame":[{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":9,"value":{"aM":0}}]},{"name":"effect3","colorFrame":[{"duration":9,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0,"value":{"aM":0}},{"duration":21,"tweenEasing":0},{"duration":18,"tweenEasing":0},{"duration":0,"value":{"aM":0}}]},{"name":"effect2","colorFrame":[{"duration":21,"tweenEasing":0,"value":{"aM":0}},{"duration":18,"tweenEasing":0},{"duration":21,"tweenEasing":0},{"duration":6,"value":{"aM":0}}]},{"name":"backLight","displayFrame":[{"duration":66,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta index 7fa4279..5975a8a 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta @@ -1,6 +1,6 @@ { "ver": "1.0.0", "uuid": "36230012-8df3-4e85-afad-76ec47d0e4d7", - "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"aabb\":{\"x\":-34.2,\"y\":-91.74,\"width\":77.68,\"height\":94.31},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":13,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-11.2185,\"y\":-56.7863,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.2,\"y\":-46.0924,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":17,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":13.5908,\"y\":-53.6036,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":12.64,\"y\":-42.7787,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":11.5,\"y\":-54.7347}},{\"inheritScale\":false,\"length\":17,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.9105,\"y\":-2.8201,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":22,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":2.0039,\"y\":-24.7902,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":12,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":18.2082,\"y\":-52.6804,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":11,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":8.206,\"y\":-62.581,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":10,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-13.0118,\"y\":-53.6185,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-10.0286,\"y\":-56.4408,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-30.0572,\"y\":-33.1972,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":26.5689,\"y\":-30.0747}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":17.6467,\"y\":1.3208,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":14.7447,\"y\":3.5738,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":10.7292,\"y\":-5.7822,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":14.7808,\"y\":2.8582,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":12.81,\"y\":-2.38,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":6.29,\"y\":0.98,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":9.07,\"y\":-0.39,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":6.91,\"y\":0.09,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":3.74,\"y\":-1.19,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":13.01,\"y\":-2.08,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":13.28,\"y\":-2.44,\"skX\":83.48,\"skY\":83.48}}]},{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":10.63,\"y\":-0.15,\"skX\":85.72,\"skY\":85.72}}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":4.79,\"y\":-0.12,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":5.38,\"y\":-0.23,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":3.42,\"y\":-0.82,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":4.09,\"y\":-0.34,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":44.16,\"y\":14.08},{\"duration\":12,\"tweenEasing\":0,\"x\":44.16,\"y\":14.08},{\"duration\":15,\"tweenEasing\":0,\"x\":31.04,\"y\":15.36},{\"duration\":15,\"tweenEasing\":0,\"x\":22.08,\"y\":-0.64},{\"duration\":6,\"x\":-10.24,\"y\":-23.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":7.36,\"y\":-2.48},{\"duration\":9,\"tweenEasing\":0,\"x\":7.36,\"y\":-2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":-2,\"y\":-15.76},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.48,\"y\":-20.48},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.64,\"y\":-36.8},{\"duration\":6,\"x\":-40.56,\"y\":-53.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-14.8,\"y\":25.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-14.8,\"y\":25.6},{\"duration\":18,\"tweenEasing\":0,\"x\":-29.2,\"y\":17.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-38,\"y\":9.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-56.4,\"y\":4.4},{\"duration\":3,\"x\":-68.8,\"y\":4}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":10.56,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":10.56,\"y\":11.2},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":1.6},{\"duration\":18,\"tweenEasing\":0,\"x\":-19.84,\"y\":3.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-29.76,\"y\":-6.72},{\"duration\":3,\"x\":-39.68,\"y\":-24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":1.19},{\"duration\":15,\"tweenEasing\":0,\"x\":0.46,\"y\":-1.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.33,\"y\":-2.07},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":5.76},{\"duration\":15,\"tweenEasing\":0,\"x\":5.14,\"y\":1.94},{\"duration\":15,\"tweenEasing\":0,\"x\":8.29,\"y\":-0.16},{\"duration\":15,\"tweenEasing\":0,\"x\":7.36,\"y\":2.19},{\"duration\":0,\"x\":5.76}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":3.84,\"y\":-0.96},{\"duration\":15,\"tweenEasing\":0,\"x\":7.18,\"y\":1.44},{\"duration\":15,\"tweenEasing\":0,\"x\":13.26,\"y\":3.09},{\"duration\":15,\"tweenEasing\":0,\"x\":11.89,\"y\":3.87},{\"duration\":0,\"x\":3.84,\"y\":-0.96}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":5.44,\"y\":1.28},{\"duration\":15,\"tweenEasing\":0,\"x\":4.96,\"y\":4.88},{\"duration\":15,\"tweenEasing\":0,\"x\":7.29,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":7.59,\"y\":5.42},{\"duration\":0,\"x\":5.44,\"y\":1.28}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":3.41,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":2.68},{\"duration\":15,\"tweenEasing\":0,\"x\":3.89,\"y\":0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":5.61,\"y\":3.87},{\"duration\":0,\"x\":3.41,\"y\":1.17}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":2.72},{\"duration\":15,\"tweenEasing\":0,\"x\":0.96,\"y\":-0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":1.42,\"y\":3.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.96},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.32},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.7},{\"duration\":15,\"tweenEasing\":0,\"x\":0.81,\"y\":-2.06},{\"duration\":15,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.1},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.1},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.08,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"y\":-2.64},{\"duration\":0,\"x\":-0.19,\"y\":-1.7}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":4.32,\"y\":4.08},{\"duration\":15,\"tweenEasing\":0,\"x\":4.96,\"y\":2.34},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.37,\"y\":-4.26},{\"duration\":15,\"tweenEasing\":0,\"x\":4.21,\"y\":3.38},{\"duration\":0,\"x\":4.32,\"y\":4.08}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":12,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":24,\"tweenEasing\":0,\"x\":22.4,\"y\":-63.2},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":12,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":24,\"tweenEasing\":0,\"x\":22.4,\"y\":-63.2},{\"duration\":12,\"tweenEasing\":0,\"x\":33.4,\"y\":-11},{\"duration\":12,\"tweenEasing\":0,\"x\":26.6,\"y\":-37.6},{\"duration\":9,\"tweenEasing\":0,\"x\":29.6,\"y\":-47},{\"duration\":3,\"x\":22.4,\"y\":-63.2}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":15,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":21,\"tweenEasing\":0,\"x\":5.03,\"y\":-47.77},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":15,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":21,\"tweenEasing\":0,\"x\":5.03,\"y\":-47.77},{\"duration\":12,\"tweenEasing\":0,\"x\":6.86,\"y\":9.83},{\"duration\":12,\"tweenEasing\":0,\"x\":8.69,\"y\":-11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.89,\"y\":-32.46},{\"duration\":6,\"x\":5.03,\"y\":-47.77}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":18,\"tweenEasing\":0,\"x\":-37.94,\"y\":-42.74},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":15,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":18,\"tweenEasing\":0,\"x\":-37.94,\"y\":-42.74},{\"duration\":15,\"tweenEasing\":0,\"y\":15.09},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.57,\"y\":-18.51},{\"duration\":12,\"tweenEasing\":0,\"x\":-24.23,\"y\":-35.89},{\"duration\":6,\"x\":-37.94,\"y\":-42.74}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":9,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.43,\"y\":-20.57},{\"duration\":15,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.43,\"y\":-20.57},{\"duration\":15,\"tweenEasing\":0,\"x\":2.51,\"y\":23.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":-0.46},{\"duration\":15,\"tweenEasing\":0,\"x\":-28.57,\"y\":-8.23},{\"duration\":9,\"x\":-27.43,\"y\":-20.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":0.08},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.44,\"y\":0.2},{\"duration\":12,\"tweenEasing\":0,\"x\":0.12,\"y\":0.59},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":2.96,\"y\":-1.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.28,\"y\":0.35},{\"duration\":15,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-3},{\"duration\":12,\"tweenEasing\":0,\"x\":0.49,\"y\":-0.89},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":5.25},{\"duration\":3,\"tweenEasing\":0,\"x\":15.99,\"y\":2.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.24,\"y\":3.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.77,\"y\":-0.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.4,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":9.35,\"y\":3.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":8.51,\"y\":-1.26},{\"duration\":3,\"tweenEasing\":0,\"x\":15.88,\"y\":0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.36,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.81,\"y\":-1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":3.44,\"y\":2.61},{\"duration\":12,\"tweenEasing\":0,\"x\":9.85,\"y\":0.52},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":11.17,\"y\":11.95},{\"duration\":3,\"tweenEasing\":0,\"x\":17.87,\"y\":16.22},{\"duration\":15,\"tweenEasing\":0,\"x\":-17.67,\"y\":1.23},{\"duration\":3,\"tweenEasing\":0,\"x\":-18.56,\"y\":-2},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.49,\"y\":-0.72},{\"duration\":12,\"tweenEasing\":0,\"x\":9.18,\"y\":7.81},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":7.13,\"y\":4.46},{\"duration\":3,\"tweenEasing\":0,\"x\":10.32,\"y\":7.06},{\"duration\":15,\"tweenEasing\":0,\"x\":-22.31,\"y\":-2.2},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.91,\"y\":-5.68},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.89,\"y\":-0.87},{\"duration\":12,\"tweenEasing\":0,\"x\":6.95,\"y\":5.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":3.28},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":2.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.88,\"y\":-1.42},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.36,\"y\":-0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.68,\"y\":-0.7},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.23,\"y\":-0.74},{\"duration\":12,\"tweenEasing\":0,\"x\":0.1,\"y\":2.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.64},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.61,\"y\":-1.24},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.41,\"y\":-0.33},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-3.07},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.09,\"y\":1.77},{\"duration\":3,\"tweenEasing\":0,\"x\":0.54,\"y\":1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":1.24,\"y\":-3.23},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":15,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":7.03,\"y\":0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":8.46,\"y\":4.38},{\"duration\":15,\"tweenEasing\":0,\"x\":-9.94,\"y\":-5.59},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.56,\"y\":-6.78},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.33,\"y\":-0.7},{\"duration\":12,\"tweenEasing\":0,\"x\":4.31,\"y\":3.25},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":60,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":-18.2,\"y\":13.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-18.2,\"y\":13.4},{\"duration\":15,\"tweenEasing\":0,\"x\":-35.6,\"y\":3.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-48,\"y\":0.8},{\"duration\":9,\"x\":-61.2}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":9,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-29.33,\"y\":21.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-29.33,\"y\":21.33},{\"duration\":15,\"tweenEasing\":0,\"x\":-46.13,\"y\":12},{\"duration\":15,\"tweenEasing\":0,\"x\":-53.87,\"y\":18.93},{\"duration\":15,\"x\":-62.13,\"y\":14.67}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":15,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-9.07,\"y\":26.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-9.07,\"y\":26.4},{\"duration\":15,\"tweenEasing\":0,\"x\":-27.2,\"y\":5.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-46.93,\"y\":-8.53},{\"duration\":18,\"x\":-54.93,\"y\":-10.93}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":18,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":12,\"tweenEasing\":0,\"x\":0.21,\"y\":0.98},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":12,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.43,\"y\":0.09},{\"duration\":12,\"tweenEasing\":0,\"x\":0.37,\"y\":0.24},{\"duration\":15,\"tweenEasing\":0,\"x\":1.38,\"y\":-1.56},{\"duration\":12,\"tweenEasing\":0,\"x\":0.39,\"y\":0.48},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":12,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":12,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.77,\"y\":-1.21},{\"duration\":12,\"tweenEasing\":0,\"x\":16.81,\"y\":-1.49},{\"duration\":15,\"tweenEasing\":0,\"x\":16.01,\"y\":-1.17},{\"duration\":12,\"tweenEasing\":0,\"x\":2.27,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":40},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":15,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.85,\"y\":-3.89},{\"duration\":12,\"tweenEasing\":0,\"x\":25.9,\"y\":0.2},{\"duration\":15,\"tweenEasing\":0,\"x\":24.94,\"y\":0.84},{\"duration\":12,\"tweenEasing\":0,\"x\":2.99,\"y\":-4.37},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-8.35,\"y\":0.91},{\"duration\":12,\"tweenEasing\":0,\"x\":18.7,\"y\":3.66},{\"duration\":15,\"tweenEasing\":0,\"x\":17.58,\"y\":4.46},{\"duration\":12,\"tweenEasing\":0,\"x\":2.45,\"y\":1.81},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-7.25,\"y\":-1.47},{\"duration\":12,\"tweenEasing\":0,\"x\":12.57,\"y\":4.07},{\"duration\":15,\"tweenEasing\":0,\"x\":12.25,\"y\":4.55},{\"duration\":12,\"tweenEasing\":0,\"x\":0.8,\"y\":0.69},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":12,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.93,\"y\":-2.03},{\"duration\":12,\"tweenEasing\":0,\"x\":2.55,\"y\":-0.18},{\"duration\":15,\"tweenEasing\":0,\"x\":2.87,\"y\":0.46},{\"duration\":12,\"tweenEasing\":0,\"y\":0.8},{\"duration\":0}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":12,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":12,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":12,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-0.39},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.95,\"y\":-0.39},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.08,\"y\":-0.33},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.4,\"y\":0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.68,\"y\":0.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.88,\"y\":0.14},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":0.51},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.92,\"y\":-0.64},{\"duration\":12,\"tweenEasing\":0,\"x\":2.79,\"y\":7.74},{\"duration\":15,\"tweenEasing\":0,\"x\":2.95,\"y\":8.38},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.65,\"y\":-6.15},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":12,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":12,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":42},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":42},{\"duration\":12,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":39},{\"duration\":15,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-5.03,\"y\":3.43},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":6.49,\"y\":-2.74},{\"duration\":3,\"x\":9.6,\"y\":-12.57}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9,\"y\":7.6},{\"duration\":3,\"tweenEasing\":0,\"x\":-9,\"y\":7.6},{\"duration\":3,\"tweenEasing\":0,\"x\":-20.26,\"y\":-2.26},{\"duration\":9,\"tweenEasing\":0,\"x\":-23.68,\"y\":-12.6},{\"duration\":0,\"x\":-48,\"y\":-32.6}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.36,\"y\":10.88},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.52,\"y\":-14.48},{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-18.72},{\"duration\":3,\"x\":13.12,\"y\":-27.2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":5.44,\"y\":1.92},{\"duration\":3,\"tweenEasing\":0,\"x\":-12.08,\"y\":-14.48},{\"duration\":9,\"tweenEasing\":0,\"x\":-13.46,\"y\":-17.74},{\"duration\":0,\"x\":-18.88,\"y\":-27.52}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.31,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-7.03,\"y\":3.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.32,\"y\":2.11},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.59,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.95,\"y\":5.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":1.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.05,\"y\":0.53},{\"duration\":9,\"tweenEasing\":0,\"x\":-5.11,\"y\":-0.59},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.19,\"y\":2.37},{\"duration\":9,\"tweenEasing\":0,\"x\":0.8,\"y\":1.76},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.28,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.64,\"y\":-0.08},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.44,\"y\":-0.72},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.96,\"y\":5.17},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.87,\"y\":1.92},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":14.4,\"y\":3.43},{\"duration\":18,\"tweenEasing\":0,\"x\":14.4,\"y\":3.43},{\"duration\":15,\"tweenEasing\":0,\"x\":6.4,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":8.46,\"y\":-23.09},{\"duration\":6,\"x\":1.14,\"y\":-32.46}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-3.2,\"y\":1.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-3.2,\"y\":1.6},{\"duration\":18,\"tweenEasing\":0,\"x\":0.23,\"y\":-24.23},{\"duration\":18,\"tweenEasing\":0,\"x\":-8.69,\"y\":-39.54},{\"duration\":9,\"x\":-11.61,\"y\":-48.32}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-6.13,\"y\":22.4},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.13,\"y\":22.4},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.76,\"y\":-4.89},{\"duration\":12,\"tweenEasing\":0,\"x\":8.89,\"y\":-19.64},{\"duration\":9,\"x\":22.49,\"y\":-23.38}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":4,\"y\":6.13},{\"duration\":9,\"tweenEasing\":0,\"x\":4,\"y\":6.13},{\"duration\":9,\"tweenEasing\":0,\"x\":1.07,\"y\":-7.73},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.07,\"y\":-20.27},{\"duration\":24,\"x\":-40.53,\"y\":-29.6}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":6,\"tweenEasing\":0,\"x\":0.1,\"y\":0.47},{\"duration\":9,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.43},{\"duration\":3,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.43},{\"duration\":42,\"x\":-0.66,\"y\":-0.09}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.36,\"y\":-1.9},{\"duration\":6,\"tweenEasing\":0,\"x\":1.36,\"y\":-1.9},{\"duration\":9,\"tweenEasing\":0,\"x\":1.29,\"y\":-2.29},{\"duration\":3,\"tweenEasing\":0,\"x\":1.29,\"y\":-2.29},{\"duration\":15,\"tweenEasing\":0,\"x\":0.3,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.66,\"y\":1.87},{\"duration\":6,\"tweenEasing\":0,\"x\":1.28,\"y\":-7.25},{\"duration\":12,\"x\":0.98,\"y\":-8.17}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":7.84,\"y\":0.44},{\"duration\":3,\"tweenEasing\":0,\"x\":7.31,\"y\":-0.39},{\"duration\":6,\"tweenEasing\":0,\"x\":7.31,\"y\":0.09},{\"duration\":9,\"tweenEasing\":0,\"x\":10.95,\"y\":1.85},{\"duration\":3,\"tweenEasing\":0,\"x\":10.69,\"y\":-1.88},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.01,\"y\":-11.67},{\"duration\":9,\"tweenEasing\":0,\"x\":-9.21,\"y\":-16.87},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.41,\"y\":38.01},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.29,\"y\":34.33},{\"duration\":0,\"x\":-3.29,\"y\":37.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":6.76,\"y\":-4.62},{\"duration\":3,\"tweenEasing\":0,\"x\":6.76,\"y\":-5.1},{\"duration\":6,\"tweenEasing\":0,\"x\":6.76,\"y\":-4.62},{\"duration\":9,\"tweenEasing\":0,\"x\":12.09,\"y\":-1.76},{\"duration\":3,\"tweenEasing\":0,\"x\":11.83,\"y\":-5.49},{\"duration\":15,\"tweenEasing\":0,\"x\":0.87,\"y\":-11.81},{\"duration\":9,\"tweenEasing\":0,\"x\":2.47,\"y\":-1.81},{\"duration\":6,\"tweenEasing\":0,\"x\":2.87,\"y\":28.27},{\"duration\":12,\"tweenEasing\":0,\"x\":1.27,\"y\":25.87},{\"duration\":0,\"x\":1.59,\"y\":27.47}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":8.19,\"y\":6.12},{\"duration\":3,\"tweenEasing\":0,\"x\":7.71,\"y\":5.8},{\"duration\":6,\"tweenEasing\":0,\"x\":7.71,\"y\":6.28},{\"duration\":9,\"tweenEasing\":0,\"x\":8.92,\"y\":10.46},{\"duration\":3,\"tweenEasing\":0,\"x\":9.58,\"y\":11.39},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.71,\"y\":-14.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.24,\"y\":-22.13},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.2,\"y\":36.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-5.08,\"y\":33.88},{\"duration\":0,\"x\":0.04,\"y\":42.84}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":6.06,\"y\":1.67},{\"duration\":3,\"tweenEasing\":0,\"x\":6.06,\"y\":1.19},{\"duration\":6,\"tweenEasing\":0,\"x\":6.06,\"y\":1.67},{\"duration\":9,\"tweenEasing\":0,\"x\":6.79,\"y\":3.11},{\"duration\":3,\"tweenEasing\":0,\"x\":6.52,\"y\":-1.69},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.18,\"y\":-17.07},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.38,\"y\":-13.87},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.38,\"y\":32.61},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.46,\"y\":33.73},{\"duration\":0,\"x\":-0.46,\"y\":38.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.65},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.18,\"y\":2.25},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":-1.48},{\"duration\":15,\"tweenEasing\":0,\"x\":2.36,\"y\":-14.52},{\"duration\":9,\"tweenEasing\":0,\"x\":3.29,\"y\":-8.39},{\"duration\":6,\"tweenEasing\":0,\"x\":9.96,\"y\":24.76},{\"duration\":12,\"tweenEasing\":0,\"x\":10.6,\"y\":19.16},{\"duration\":0,\"x\":10.92,\"y\":21.4}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.84},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.52,\"y\":-0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.52,\"y\":-3.84},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.52,\"y\":-5.28},{\"duration\":21,\"x\":-0.52,\"y\":-3.52}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.53,\"y\":-0.76},{\"duration\":27,\"tweenEasing\":0,\"x\":-2.24,\"y\":-1.59},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.24,\"y\":-1.59},{\"duration\":18,\"x\":-1.03,\"y\":-1.63}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.2,\"y\":-0.16},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.29},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.32,\"y\":-0.29},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.93,\"y\":-3.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-6.42,\"y\":3.56},{\"duration\":12,\"tweenEasing\":0,\"x\":-5.56,\"y\":4.61},{\"duration\":0,\"x\":-7.53,\"y\":5.06}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":6,\"tweenEasing\":0,\"x\":7.79,\"y\":1.43},{\"duration\":3,\"tweenEasing\":0,\"x\":6.83,\"y\":0.79},{\"duration\":6,\"tweenEasing\":0,\"x\":6.83,\"y\":1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":6.51,\"y\":2.87},{\"duration\":3,\"tweenEasing\":0,\"x\":6.24,\"y\":-0.86},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.89,\"y\":-11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":0.11,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.52,\"y\":42.14},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.12,\"y\":39.74},{\"duration\":0,\"x\":-5.8,\"y\":41.34}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-7.31},{\"duration\":9,\"tweenEasing\":0,\"y\":-12.8},{\"duration\":6,\"tweenEasing\":0,\"y\":-12.8},{\"duration\":27,\"x\":0.8,\"y\":-41.6}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-18.49,\"y\":6.76},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.49,\"y\":6.76},{\"duration\":21,\"tweenEasing\":0,\"x\":-16,\"y\":-10.13},{\"duration\":21,\"tweenEasing\":0,\"x\":-24.71,\"y\":-24.36},{\"duration\":9,\"x\":-24.53,\"y\":-37.69}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-1.87,\"y\":10.67},{\"duration\":24,\"tweenEasing\":0,\"x\":-1.87,\"y\":10.67},{\"duration\":21,\"tweenEasing\":0,\"x\":3.25,\"y\":-16.21},{\"duration\":18,\"tweenEasing\":0,\"x\":0.69,\"y\":-29.17},{\"duration\":0,\"x\":1.17,\"y\":-34.61}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":4,\"y\":-17},{\"duration\":24,\"tweenEasing\":0,\"x\":1,\"y\":-29.2},{\"duration\":3,\"x\":-0.2,\"y\":-39.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.6,\"y\":0.39},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.11,\"y\":-1.6},{\"duration\":24,\"tweenEasing\":0,\"x\":5.47,\"y\":-1.28},{\"duration\":24,\"tweenEasing\":0,\"x\":6.08,\"y\":-1.98},{\"duration\":0,\"x\":4.11,\"y\":-1.6}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.8,\"y\":0.91},{\"duration\":24,\"tweenEasing\":0,\"x\":4.8,\"y\":0.91},{\"duration\":24,\"tweenEasing\":0,\"x\":5.07,\"y\":1.29},{\"duration\":0,\"x\":4.8,\"y\":0.91}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":4.19,\"y\":4.72},{\"duration\":24,\"tweenEasing\":0,\"x\":6.33,\"y\":5.71},{\"duration\":24,\"tweenEasing\":0,\"x\":6.14,\"y\":5.69},{\"duration\":0,\"x\":4.19,\"y\":4.72}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.43,\"y\":0.23},{\"duration\":24,\"tweenEasing\":0,\"x\":5.46,\"y\":1.26},{\"duration\":24,\"tweenEasing\":0,\"x\":5.41,\"y\":0.45},{\"duration\":0,\"x\":3.43,\"y\":0.23}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.23,\"y\":0.23},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-0.57},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":6.56,\"y\":3.17},{\"duration\":24,\"tweenEasing\":0,\"x\":6.56,\"y\":3.17},{\"duration\":24,\"tweenEasing\":0,\"x\":7.09,\"y\":2.9},{\"duration\":0,\"x\":6.56,\"y\":3.17}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":6.4,\"y\":-11.2},{\"duration\":24,\"tweenEasing\":0,\"x\":6.4,\"y\":-23.8},{\"duration\":0,\"x\":14,\"y\":-30.2}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-10.4,\"y\":-18.24},{\"duration\":21,\"tweenEasing\":0,\"x\":-10.08,\"y\":-32.8},{\"duration\":12,\"x\":-12.8,\"y\":-39.68}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":8.8,\"y\":-12.2},{\"duration\":24,\"tweenEasing\":0,\"x\":11,\"y\":-27.6},{\"duration\":24,\"x\":12.2,\"y\":-38.6}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.8,\"y\":-11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":7.6,\"y\":-22.2},{\"duration\":9,\"x\":8.6,\"y\":-30.4}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.53,\"y\":-13.33},{\"duration\":18,\"tweenEasing\":0,\"x\":-3.47,\"y\":-21.07},{\"duration\":33,\"x\":-6.13,\"y\":-34.93}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.08,\"y\":0.37},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":0.37,\"y\":0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":0.38,\"y\":0.31},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.31,\"y\":-0.92},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.27},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-2.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.19,\"y\":-1.43},{\"duration\":0,\"x\":-2.4,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.35},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.39},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.53,\"y\":-3.63},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.53,\"y\":-4.55},{\"duration\":0,\"x\":-2.4,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-2.13,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.29,\"y\":0.61},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-1.49},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-0.35},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-1.49},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":0.13},{\"duration\":9,\"tweenEasing\":0,\"x\":0.57,\"y\":-2.13},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":0.61},{\"duration\":18,\"tweenEasing\":0,\"x\":0.57,\"y\":-2.13},{\"duration\":0,\"x\":-2.13,\"y\":0.27}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":-0.72},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.61},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.61},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":9,\"tweenEasing\":0,\"x\":1.72,\"y\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.33,\"y\":-2},{\"duration\":18,\"tweenEasing\":0,\"x\":1.72,\"y\":-3.73},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.32,\"y\":0.32},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.99},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.96},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.47},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.12},{\"duration\":9,\"tweenEasing\":0,\"y\":-1.95},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.96},{\"duration\":18,\"tweenEasing\":0,\"y\":-2.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.12},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.12},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.95,\"y\":-1.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":-0.4},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.71,\"y\":-0.37},{\"duration\":0,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.33,\"y\":0.31},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.89,\"y\":0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.41,\"y\":0.01},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":9,\"tweenEasing\":0,\"x\":1.52,\"y\":0.77},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.51},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.51},{\"duration\":9,\"tweenEasing\":0,\"x\":2.26,\"y\":-1.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.99},{\"duration\":18,\"tweenEasing\":0,\"x\":2.26,\"y\":-2.14},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":6.93,\"y\":-13.69},{\"duration\":0,\"x\":10.84,\"y\":-19.73}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-8,\"y\":-6.63},{\"duration\":15,\"tweenEasing\":0,\"x\":-10.06,\"y\":-17.83},{\"duration\":9,\"x\":-10.74,\"y\":-24.69}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":7.77,\"y\":-12.8},{\"duration\":21,\"tweenEasing\":0,\"x\":13.49,\"y\":-21.94},{\"duration\":9,\"x\":13.03,\"y\":-26.74}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":6.8,\"y\":-15.73},{\"duration\":18,\"tweenEasing\":0,\"x\":6.27,\"y\":-28.27},{\"duration\":0,\"x\":7.33,\"y\":-35.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.64,\"y\":-11.84},{\"duration\":21,\"tweenEasing\":0,\"x\":-11.68,\"y\":-18.88},{\"duration\":6,\"x\":-15.04,\"y\":-24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.58,\"y\":0.86},{\"duration\":24,\"tweenEasing\":0,\"x\":0.58,\"y\":0.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-1.12},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.16,\"y\":-1.12},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.2,\"y\":-1.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.36,\"y\":-1.83},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.32,\"y\":-1.37},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.89},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.79},{\"duration\":24,\"tweenEasing\":0,\"x\":0.64,\"y\":-1.55},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-1.44},{\"duration\":24,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.64},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-1.95,\"y\":-1.15}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.17,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.26},{\"duration\":0,\"x\":-0.3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":1.76,\"y\":2.48},{\"duration\":21,\"tweenEasing\":0,\"x\":1.49,\"y\":0.92},{\"duration\":24,\"tweenEasing\":0,\"x\":2.13,\"y\":1.4},{\"duration\":0,\"x\":1.76,\"y\":2.48}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Walking\"}]}]}", + "dragonBonesJson": "{\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":60,\"name\":\"SoldierFireGhost\",\"aabb\":{\"x\":-17.1,\"y\":-45.87,\"width\":38.84,\"height\":47.16},\"bone\":[{\"name\":\"root\"},{\"inheritScale\":false,\"length\":6.5,\"name\":\"leftShoulder\",\"parent\":\"root\",\"transform\":{\"x\":-5.60925,\"y\":-28.39315,\"skX\":156.8918,\"skY\":156.8918}},{\"inheritScale\":false,\"name\":\"backLight\",\"parent\":\"root\",\"transform\":{\"x\":0.1,\"y\":-23.0462,\"scX\":3,\"scY\":3}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"rightArm\",\"parent\":\"root\",\"transform\":{\"x\":6.7954,\"y\":-26.8018,\"skX\":46.9769,\"skY\":46.9769}},{\"inheritScale\":false,\"name\":\"effect4\",\"parent\":\"root\",\"transform\":{\"x\":6.32,\"y\":-21.38935,\"skX\":-9.349,\"skY\":-9.349}},{\"inheritScale\":false,\"name\":\"effect7\",\"parent\":\"root\"},{\"inheritScale\":false,\"name\":\"effect3\",\"parent\":\"root\",\"transform\":{\"x\":5.75,\"y\":-27.36735}},{\"inheritScale\":false,\"length\":8.5,\"name\":\"leg\",\"parent\":\"root\",\"transform\":{\"x\":-0.45525,\"y\":-1.41005,\"skX\":-85.7242,\"skY\":-85.7242}},{\"inheritScale\":false,\"length\":11,\"name\":\"body\",\"parent\":\"root\",\"transform\":{\"x\":1.00195,\"y\":-12.3951,\"skX\":-82.2714,\"skY\":-82.2714}},{\"inheritScale\":false,\"length\":6,\"name\":\"rightShoulder\",\"parent\":\"root\",\"transform\":{\"x\":9.1041,\"y\":-26.3402,\"skX\":22.0857,\"skY\":22.0857}},{\"inheritScale\":false,\"length\":5.5,\"name\":\"head\",\"parent\":\"root\",\"transform\":{\"x\":4.103,\"y\":-31.2905,\"skX\":-83.4757,\"skY\":-83.4757}},{\"inheritScale\":false,\"length\":5,\"name\":\"leftArm\",\"parent\":\"root\",\"transform\":{\"x\":-6.5059,\"y\":-26.80925,\"skX\":122.5397,\"skY\":122.5397}},{\"inheritScale\":false,\"name\":\"effect2\",\"parent\":\"root\",\"transform\":{\"x\":-5.0143,\"y\":-28.2204,\"skX\":-79.3059,\"skY\":-79.3059}},{\"inheritScale\":false,\"name\":\"effect5\",\"parent\":\"root\",\"transform\":{\"x\":-15.0286,\"y\":-16.5986,\"skX\":-72.4737,\"skY\":-72.4737}},{\"inheritScale\":false,\"name\":\"effect6\",\"parent\":\"root\",\"transform\":{\"x\":13.28445,\"y\":-15.03735}},{\"inheritScale\":false,\"name\":\"rightFrontArm\",\"parent\":\"rightArm\",\"transform\":{\"x\":8.82335,\"y\":0.6604,\"skX\":10.7237,\"skY\":10.7237}},{\"inheritScale\":false,\"name\":\"leftFrontArm\",\"parent\":\"leftArm\",\"transform\":{\"x\":7.37235,\"y\":1.7869,\"skX\":-39.1583,\"skY\":-39.1583}},{\"inheritScale\":false,\"name\":\"rightHand\",\"parent\":\"rightFrontArm\",\"transform\":{\"x\":5.3646,\"y\":-2.8911,\"skX\":21.9835,\"skY\":21.9835}},{\"inheritScale\":false,\"name\":\"leftHand\",\"parent\":\"leftFrontArm\",\"transform\":{\"x\":7.3904,\"y\":1.4291,\"skX\":-25.7356,\"skY\":-25.7356}}],\"slot\":[{\"name\":\"backLight\",\"parent\":\"backLight\"},{\"name\":\"rightArm\",\"parent\":\"rightArm\"},{\"name\":\"leg\",\"parent\":\"leg\"},{\"name\":\"body\",\"parent\":\"body\"},{\"name\":\"rightShoulder\",\"parent\":\"rightShoulder\"},{\"name\":\"rightFrontArm\",\"parent\":\"rightFrontArm\"},{\"name\":\"rightHand\",\"parent\":\"rightHand\"},{\"name\":\"leftArm\",\"parent\":\"leftArm\"},{\"name\":\"leftShoulder\",\"parent\":\"leftShoulder\"},{\"name\":\"leftFrontArm\",\"parent\":\"leftFrontArm\"},{\"name\":\"head\",\"parent\":\"head\"},{\"name\":\"leftHand\",\"parent\":\"leftHand\"},{\"name\":\"effect2\",\"parent\":\"effect2\"},{\"name\":\"effect3\",\"parent\":\"effect3\"},{\"name\":\"effect4\",\"parent\":\"effect4\"},{\"name\":\"effect5\",\"parent\":\"effect5\"},{\"name\":\"effect6\",\"parent\":\"effect6\"},{\"displayIndex\":-1,\"name\":\"effect7\",\"parent\":\"effect7\"}],\"skin\":[{\"slot\":[{\"name\":\"effect5\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftShoulder\",\"display\":[{\"name\":\"yinmo03\",\"transform\":{\"x\":2.4,\"y\":-0.06,\"skX\":-154.62,\"skY\":-154.62},\"path\":\"leftShoulder\"}]},{\"name\":\"leg\",\"display\":[{\"name\":\"yinmoqe00\",\"transform\":{\"x\":5.32,\"y\":-0.07,\"skX\":85.72,\"skY\":85.72}}]},{\"name\":\"head\",\"display\":[{\"name\":\"yinmo01\",\"transform\":{\"x\":6.5,\"y\":-1.04,\"skX\":82.3,\"skY\":82.3,\"scX\":1.5,\"scY\":1.5},\"path\":\"head\"},{\"name\":\"head2\",\"transform\":{\"x\":6.64,\"y\":-1.22,\"skX\":83.48,\"skY\":83.48}}]},{\"name\":\"body\",\"display\":[{\"name\":\"yinmo02\",\"transform\":{\"x\":6.41,\"y\":-1.19,\"skX\":82.27,\"skY\":82.27},\"path\":\"body\"}]},{\"name\":\"backLight\",\"display\":[{\"name\":\"biu\"}]},{\"name\":\"effect2\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightFrontArm\",\"display\":[{\"name\":\"yinmo09\",\"transform\":{\"x\":1.87,\"y\":-0.59,\"skX\":-60.14,\"skY\":-60.14},\"path\":\"rightFrontArm\"}]},{\"name\":\"rightArm\",\"display\":[{\"name\":\"yinmo08\",\"transform\":{\"x\":4.54,\"y\":-0.2,\"skX\":-54.4,\"skY\":-54.4},\"path\":\"rightArm\"}]},{\"name\":\"leftArm\",\"display\":[{\"name\":\"yinmo05\",\"transform\":{\"x\":3.46,\"y\":0.04,\"skX\":-112.43,\"skY\":-112.43},\"path\":\"leftArm\"}]},{\"name\":\"effect6\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftFrontArm\",\"display\":[{\"name\":\"yinmo06\",\"transform\":{\"x\":3.15,\"y\":0.49,\"skX\":-76.83,\"skY\":-76.83},\"path\":\"leftFrontArm\"}]},{\"name\":\"effect4\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"leftHand\",\"display\":[{\"name\":\"yinmo07\",\"transform\":{\"x\":2.04,\"y\":-0.17,\"skX\":-66.8,\"skY\":-66.8},\"path\":\"leftHand\"}]},{\"name\":\"rightShoulder\",\"display\":[{\"name\":\"yinmo04\",\"transform\":{\"x\":1.71,\"y\":-0.41,\"skX\":-28.61,\"skY\":-28.61},\"path\":\"rightShoulder\"}]},{\"name\":\"effect3\",\"display\":[{\"name\":\"huomiao01\"}]},{\"name\":\"rightHand\",\"display\":[{\"name\":\"yinmo10\",\"transform\":{\"x\":2.69,\"y\":-0.12,\"skX\":-63.84,\"skY\":-63.84},\"path\":\"rightHand\"}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"name\":\"Walking\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":12,\"tweenEasing\":0,\"x\":22.08,\"y\":7.04},{\"duration\":15,\"tweenEasing\":0,\"x\":15.52,\"y\":7.68},{\"duration\":15,\"tweenEasing\":0,\"x\":11.04,\"y\":-0.32},{\"duration\":6,\"x\":-5.12,\"y\":-11.68}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":21,\"rotate\":7.3}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":3.68,\"y\":-1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-7.88},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.24,\"y\":-10.24},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.32,\"y\":-18.4},{\"duration\":6,\"x\":-20.28,\"y\":-26.52}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-49.96},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-84.92},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-11.77},{\"duration\":6,\"rotate\":-28.57}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-7.4,\"y\":12.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-14.6,\"y\":8.8},{\"duration\":12,\"tweenEasing\":0,\"x\":-19,\"y\":4.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-28.2,\"y\":2.2},{\"duration\":3,\"x\":-34.4,\"y\":2}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-59.23},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-36.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-66.48},{\"duration\":3,\"rotate\":-111.5}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":5.28,\"y\":5.6},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.8,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.92,\"y\":1.6},{\"duration\":9,\"tweenEasing\":0,\"x\":-14.88,\"y\":-3.36},{\"duration\":3,\"x\":-19.84,\"y\":-12}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-61.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.48},{\"duration\":3,\"rotate\":27.59}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.68},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.06},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":0.07,\"y\":0.59},{\"duration\":15,\"tweenEasing\":0,\"x\":0.23,\"y\":-0.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.17,\"y\":-1.03},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-4.65},{\"duration\":15,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":23.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.54},{\"duration\":0,\"rotate\":-4.65}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.88},{\"duration\":15,\"tweenEasing\":0,\"x\":2.57,\"y\":0.97},{\"duration\":15,\"tweenEasing\":0,\"x\":4.14,\"y\":-0.08},{\"duration\":15,\"tweenEasing\":0,\"x\":3.68,\"y\":1.09},{\"duration\":0,\"x\":2.88}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.43},{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.7},{\"duration\":0,\"rotate\":20.1}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.92,\"y\":-0.48},{\"duration\":15,\"tweenEasing\":0,\"x\":3.59,\"y\":0.72},{\"duration\":15,\"tweenEasing\":0,\"x\":6.63,\"y\":1.54},{\"duration\":15,\"tweenEasing\":0,\"x\":5.95,\"y\":1.94},{\"duration\":0,\"x\":1.92,\"y\":-0.48}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-35.34},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-70.51},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-30.69},{\"duration\":0,\"rotate\":26.91}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.72,\"y\":0.64},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":2.44},{\"duration\":15,\"tweenEasing\":0,\"x\":3.65,\"y\":0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":3.79,\"y\":2.71},{\"duration\":0,\"x\":2.72,\"y\":0.64}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.72},{\"duration\":0,\"rotate\":0.59}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":1.71,\"y\":0.58},{\"duration\":15,\"tweenEasing\":0,\"x\":0.85,\"y\":1.34},{\"duration\":15,\"tweenEasing\":0,\"x\":1.95,\"y\":0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":2.81,\"y\":1.94},{\"duration\":0,\"x\":1.71,\"y\":0.58}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":10.12},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-14.23},{\"duration\":15,\"tweenEasing\":0,\"rotate\":5.57},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-13.84},{\"duration\":0,\"rotate\":10.12}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"y\":1.36},{\"duration\":15,\"tweenEasing\":0,\"x\":0.48,\"y\":-0.09},{\"duration\":15,\"tweenEasing\":0,\"x\":0.71,\"y\":1.67},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.24},{\"duration\":15,\"tweenEasing\":0,\"rotate\":13},{\"duration\":15,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":15,\"tweenEasing\":0,\"rotate\":14.15},{\"duration\":0,\"rotate\":11.24}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.48},{\"duration\":12,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.16},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.02},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.52},{\"duration\":6}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.8},{\"duration\":12,\"y\":0.9}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":60,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-1.89},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":0.14},{\"duration\":0,\"rotate\":-8}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.85},{\"duration\":15,\"tweenEasing\":0,\"x\":0.41,\"y\":-1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.05},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.04,\"y\":-1.27},{\"duration\":6,\"tweenEasing\":0,\"y\":-1.32},{\"duration\":0,\"x\":-0.1,\"y\":-0.85}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-43.73},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-66.02},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.47},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.6},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-58.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-51.28},{\"duration\":0,\"rotate\":-43.73}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":2.16,\"y\":2.04},{\"duration\":15,\"tweenEasing\":0,\"x\":2.48,\"y\":1.17},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.18,\"y\":-2.13},{\"duration\":15,\"tweenEasing\":0,\"x\":2.1,\"y\":1.69},{\"duration\":0,\"x\":2.16,\"y\":2.04}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.28},{\"duration\":15,\"tweenEasing\":0,\"rotate\":63.1},{\"duration\":15,\"tweenEasing\":0,\"rotate\":74.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":55.11},{\"duration\":0,\"rotate\":11.28}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":45},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":51},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":27,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":54},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":60},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":33,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":174,\"name\":\"Atk2\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":12,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":24,\"tweenEasing\":0,\"x\":11.2,\"y\":-31.6},{\"duration\":12,\"tweenEasing\":0,\"x\":16.7,\"y\":-5.5},{\"duration\":12,\"tweenEasing\":0,\"x\":13.3,\"y\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"x\":14.8,\"y\":-23.5},{\"duration\":3,\"x\":11.2,\"y\":-31.6}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":24,\"tweenEasing\":0,\"rotate\":61.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":33.54},{\"duration\":12,\"tweenEasing\":0,\"rotate\":56.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.57},{\"duration\":3,\"rotate\":61.88}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":15,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":21,\"tweenEasing\":0,\"x\":2.52,\"y\":-23.89},{\"duration\":12,\"tweenEasing\":0,\"x\":3.43,\"y\":4.92},{\"duration\":12,\"tweenEasing\":0,\"x\":4.34,\"y\":-5.6},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.95,\"y\":-16.23},{\"duration\":6,\"x\":2.52,\"y\":-23.89}],\"rotateFrame\":[{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-53.65},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-12.09},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-56.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-44.01},{\"duration\":6,\"rotate\":-53.65}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":18,\"tweenEasing\":0,\"x\":-18.97,\"y\":-21.37},{\"duration\":15,\"tweenEasing\":0,\"y\":7.54},{\"duration\":12,\"tweenEasing\":0,\"x\":-6.29,\"y\":-9.26},{\"duration\":12,\"tweenEasing\":0,\"x\":-12.12,\"y\":-17.95},{\"duration\":6,\"x\":-18.97,\"y\":-21.37}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-111.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-42.15},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-77.72},{\"duration\":6,\"rotate\":-111.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":15,\"tweenEasing\":0,\"x\":-13.71,\"y\":-10.29},{\"duration\":15,\"tweenEasing\":0,\"x\":1.25,\"y\":11.77},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":-0.23},{\"duration\":15,\"tweenEasing\":0,\"x\":-14.29,\"y\":-4.12},{\"duration\":9,\"x\":-13.71,\"y\":-10.29}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":15,\"tweenEasing\":0,\"rotate\":57.19},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":44.61},{\"duration\":15,\"tweenEasing\":0,\"rotate\":26.09},{\"duration\":9,\"rotate\":57.19}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":3,\"tweenEasing\":0,\"x\":0.35,\"y\":0.04},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.1},{\"duration\":12,\"tweenEasing\":0,\"x\":0.06,\"y\":0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.46},{\"duration\":15,\"tweenEasing\":0,\"rotate\":8.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-14.89},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":0.17},{\"duration\":15,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":-1.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.33,\"y\":-1.5},{\"duration\":12,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.45},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.47},{\"duration\":15,\"tweenEasing\":0,\"rotate\":17.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-21.72},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":2.63},{\"duration\":3,\"tweenEasing\":0,\"x\":8,\"y\":1.03},{\"duration\":15,\"tweenEasing\":0,\"x\":-7.12,\"y\":1.65},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.38,\"y\":-0.4},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.7,\"y\":-0.01},{\"duration\":12,\"tweenEasing\":0,\"x\":4.67,\"y\":1.6},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.72},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-26.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.38},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.99},{\"duration\":12,\"tweenEasing\":0,\"rotate\":18.04},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":4.25,\"y\":-0.63},{\"duration\":3,\"tweenEasing\":0,\"x\":7.94,\"y\":0.21},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.53},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.9,\"y\":-0.6},{\"duration\":3,\"tweenEasing\":0,\"x\":1.72,\"y\":1.3},{\"duration\":12,\"tweenEasing\":0,\"x\":4.92,\"y\":0.26},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":57.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.62},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-161.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":177.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-129.73},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-7.29},{\"duration\":0}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.1},{\"duration\":15}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":5.58,\"y\":5.97},{\"duration\":3,\"tweenEasing\":0,\"x\":8.94,\"y\":8.11},{\"duration\":15,\"tweenEasing\":0,\"x\":-8.84,\"y\":0.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-9.28,\"y\":-1},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.25,\"y\":-0.36},{\"duration\":12,\"tweenEasing\":0,\"x\":4.59,\"y\":3.9},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.91},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-41.98},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.11},{\"duration\":12,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":3.56,\"y\":2.23},{\"duration\":3,\"tweenEasing\":0,\"x\":5.16,\"y\":3.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-11.15,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.46,\"y\":-2.84},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.45,\"y\":-0.43},{\"duration\":12,\"tweenEasing\":0,\"x\":3.48,\"y\":2.71},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-45.17},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-39.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.59},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-18.74},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":1.64},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":1.08},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.44,\"y\":-0.71},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.68,\"y\":-0.49},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.84,\"y\":-0.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.61,\"y\":-0.37},{\"duration\":12,\"tweenEasing\":0,\"x\":0.05,\"y\":1.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.5},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.65},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-23.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.88},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.51},{\"duration\":0}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.09},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.32},{\"duration\":15}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":27,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.9,\"y\":1.2},{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2},{\"duration\":15}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.3,\"y\":-0.62},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.21,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-31.82},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.66},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-40.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-57.07},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":1.56,\"y\":-1.53},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.27,\"y\":0.58},{\"duration\":12,\"tweenEasing\":0,\"x\":0.62,\"y\":-1.61},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":15,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-53.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-61.03},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-60.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-55.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.53},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-48.05},{\"duration\":0,\"rotate\":21.7}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":6,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.07,\"y\":1.07},{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":1.06,\"y\":1.06},{\"duration\":0}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":15,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":3.52,\"y\":0.28},{\"duration\":3,\"tweenEasing\":0,\"x\":4.23,\"y\":2.19},{\"duration\":15,\"tweenEasing\":0,\"x\":-4.97,\"y\":-2.79},{\"duration\":3,\"tweenEasing\":0,\"x\":-5.28,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.67,\"y\":-0.35},{\"duration\":12,\"tweenEasing\":0,\"x\":2.15,\"y\":1.63},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":108.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":68.96},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-61.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-119.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-76.68},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.95},{\"duration\":0,\"rotate\":-6.67}],\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":36,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":1.1,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":-1.1},{\"duration\":3,\"tweenEasing\":0,\"y\":-1},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1},{\"duration\":156},{\"duration\":0,\"value\":-1}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":12,\"value\":-1},{\"duration\":159},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":9,\"value\":-1},{\"duration\":162},{\"duration\":3,\"value\":-1}],\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":162},{\"duration\":6,\"value\":-1}],\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"rightHand\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"rightFrontArm\",\"displayFrame\":[{\"duration\":21},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":42},{\"duration\":18,\"value\":-1},{\"duration\":15}],\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":42,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":39,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":174,\"value\":-1}]}]},{\"duration\":34,\"name\":\"Atk1\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-9.1,\"y\":6.7},{\"duration\":8,\"tweenEasing\":0,\"x\":-17.8,\"y\":1.8},{\"duration\":8,\"tweenEasing\":0,\"x\":-24,\"y\":0.4},{\"duration\":6,\"x\":-30.6}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-105.08},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-96.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-69.9},{\"duration\":6,\"rotate\":-94.04}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":4,\"tweenEasing\":0,\"x\":-14.66,\"y\":10.66},{\"duration\":10,\"tweenEasing\":0,\"x\":-23.07,\"y\":6},{\"duration\":8,\"tweenEasing\":0,\"x\":-26.93,\"y\":9.46},{\"duration\":10,\"x\":-31.07,\"y\":7.33}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-108.91},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-127.09},{\"duration\":10,\"rotate\":-108.09}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":6,\"tweenEasing\":0,\"x\":-4.54,\"y\":13.2},{\"duration\":10,\"tweenEasing\":0,\"x\":-13.6,\"y\":2.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-23.46,\"y\":-4.26},{\"duration\":12,\"x\":-27.46,\"y\":-5.46}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-26.91},{\"duration\":12,\"rotate\":-24.71}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.1,\"y\":0.49},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":8,\"tweenEasing\":0,\"rotate\":18.53},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.71,\"y\":0.04},{\"duration\":8,\"tweenEasing\":0,\"x\":0.18,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":0.69,\"y\":-0.78},{\"duration\":8,\"tweenEasing\":0,\"x\":0.2,\"y\":0.24},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.06},{\"duration\":8,\"tweenEasing\":0,\"rotate\":17.69},{\"duration\":8,\"tweenEasing\":0,\"rotate\":12.39},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.88,\"y\":-0.6},{\"duration\":8,\"tweenEasing\":0,\"x\":8.4,\"y\":-0.74},{\"duration\":8,\"tweenEasing\":0,\"x\":8.01,\"y\":-0.58},{\"duration\":8,\"tweenEasing\":0,\"x\":1.14,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":40},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.39},{\"duration\":8,\"tweenEasing\":0,\"rotate\":4.99},{\"duration\":8,\"tweenEasing\":0,\"rotate\":8.69},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.42,\"y\":-1.95},{\"duration\":8,\"tweenEasing\":0,\"x\":12.95,\"y\":0.1},{\"duration\":8,\"tweenEasing\":0,\"x\":12.47,\"y\":0.42},{\"duration\":8,\"tweenEasing\":0,\"x\":1.5,\"y\":-2.19},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.79},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-95.1},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-98.37},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-44.89},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-4.17,\"y\":0.46},{\"duration\":8,\"tweenEasing\":0,\"x\":9.35,\"y\":1.83},{\"duration\":8,\"tweenEasing\":0,\"x\":8.79,\"y\":2.23},{\"duration\":8,\"tweenEasing\":0,\"x\":1.23,\"y\":0.91},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.73},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.95},{\"duration\":8,\"tweenEasing\":0,\"rotate\":2.83},{\"duration\":8,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.63,\"y\":-0.73},{\"duration\":8,\"tweenEasing\":0,\"x\":6.29,\"y\":2.04},{\"duration\":8,\"tweenEasing\":0,\"x\":6.13,\"y\":2.27},{\"duration\":8,\"tweenEasing\":0,\"x\":0.4,\"y\":0.34},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.02},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-27.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-15.36},{\"duration\":8,\"tweenEasing\":0,\"rotate\":3.41},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.01},{\"duration\":8,\"tweenEasing\":0,\"x\":1.27,\"y\":-0.09},{\"duration\":8,\"tweenEasing\":0,\"x\":1.44,\"y\":0.23},{\"duration\":8,\"tweenEasing\":0,\"y\":0.4},{\"duration\":0}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.15},{\"duration\":8,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":8,\"tweenEasing\":0,\"rotate\":30.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":1.09},{\"duration\":0}],\"scaleFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":14,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.16},{\"duration\":0}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.3},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.1},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.1,\"y\":1.1},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.2},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.54,\"y\":-0.17},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-34.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-8.09},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.7,\"y\":0.18},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.34,\"y\":0.12},{\"duration\":8,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.07},{\"duration\":8,\"tweenEasing\":0,\"x\":0.31,\"y\":0.26},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-41.51},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-50.9},{\"duration\":8,\"tweenEasing\":0,\"rotate\":-42.18},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.96,\"y\":-0.32},{\"duration\":8,\"tweenEasing\":0,\"x\":1.4,\"y\":3.87},{\"duration\":8,\"tweenEasing\":0,\"x\":1.48,\"y\":4.19},{\"duration\":8,\"tweenEasing\":0,\"x\":-3.83,\"y\":-3.08},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":8,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.81},{\"duration\":8,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":8,\"tweenEasing\":0,\"rotate\":15.7},{\"duration\":8,\"tweenEasing\":0,\"rotate\":25.83},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect4\",\"displayFrame\":[{\"duration\":4,\"value\":-1},{\"duration\":26},{\"duration\":4,\"value\":-1}],\"colorFrame\":[{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":8,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":24},{\"duration\":8,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":4,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":8,\"tweenEasing\":0},{\"duration\":10,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"displayFrame\":[{\"duration\":2,\"value\":-1},{\"duration\":22},{\"duration\":10,\"value\":-1}],\"colorFrame\":[{\"duration\":2,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":10,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":34,\"value\":-1}]}]},{\"duration\":18,\"name\":\"Atked1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.52,\"y\":1.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":3.25,\"y\":-1.37},{\"duration\":3,\"x\":4.8,\"y\":-6.29}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"rotate\":-20.99}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-4.5,\"y\":3.8},{\"duration\":3,\"tweenEasing\":0,\"x\":-10.13,\"y\":-1.13},{\"duration\":9,\"tweenEasing\":0,\"x\":-11.84,\"y\":-6.3},{\"duration\":0,\"x\":-24,\"y\":-16.3}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.21},{\"duration\":9,\"rotate\":-14.93}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-3.68,\"y\":5.44},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.76,\"y\":-7.24},{\"duration\":6,\"tweenEasing\":0,\"x\":1.84,\"y\":-9.36},{\"duration\":3,\"x\":6.56,\"y\":-13.6}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-21.44},{\"duration\":3,\"rotate\":-23.34}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":2.72,\"y\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-6.04,\"y\":-7.24},{\"duration\":9,\"tweenEasing\":0,\"x\":-6.73,\"y\":-8.87},{\"duration\":0,\"x\":-9.44,\"y\":-13.76}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":55.47},{\"duration\":9,\"tweenEasing\":0,\"rotate\":51.89},{\"duration\":0,\"rotate\":41.14}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.23},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.56},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-11.41},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.05},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.27},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.15,\"y\":2.3},{\"duration\":9,\"tweenEasing\":0,\"x\":-3.52,\"y\":1.7},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.93},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.8},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.16,\"y\":1.05},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.29,\"y\":0.44},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-15.21},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.98,\"y\":2.9},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.31,\"y\":0.72},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.26},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":0.27},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.56,\"y\":-0.29},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.45},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.1,\"y\":1.19},{\"duration\":9,\"tweenEasing\":0,\"x\":0.4,\"y\":0.88},{\"duration\":0}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.23},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.64,\"y\":0.12},{\"duration\":9,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.04},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.63},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.92},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.22,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.33},{\"duration\":9,\"tweenEasing\":0,\"rotate\":14.55},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.48,\"y\":2.58},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.94,\"y\":0.96},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.02},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-28.28},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":66}},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":49}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":18,\"value\":-1}]}]},{\"duration\":78,\"name\":\"Dying\",\"bone\":[{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":18,\"tweenEasing\":0,\"x\":7.2,\"y\":1.72},{\"duration\":15,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.14},{\"duration\":15,\"tweenEasing\":0,\"x\":4.23,\"y\":-11.54},{\"duration\":6,\"x\":0.57,\"y\":-16.23}],\"rotateFrame\":[{\"duration\":42,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.89},{\"duration\":6,\"rotate\":26.37}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.6,\"y\":0.8},{\"duration\":18,\"tweenEasing\":0,\"x\":0.12,\"y\":-12.12},{\"duration\":18,\"tweenEasing\":0,\"x\":-4.34,\"y\":-19.77},{\"duration\":9,\"x\":-5.8,\"y\":-24.16}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-10.49},{\"duration\":9,\"rotate\":-4.63}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":11.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.38,\"y\":-2.44},{\"duration\":12,\"tweenEasing\":0,\"x\":4.45,\"y\":-9.82},{\"duration\":9,\"x\":11.24,\"y\":-11.69}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":12,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-12.51},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-13.38},{\"duration\":9,\"rotate\":9.35}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":2,\"y\":3.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.54,\"y\":-3.87},{\"duration\":15,\"tweenEasing\":0,\"x\":-6.54,\"y\":-10.13},{\"duration\":24,\"x\":-20.27,\"y\":-14.8}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":29.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":2.18},{\"duration\":24,\"rotate\":-22.33}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.05,\"y\":0.23},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.21},{\"duration\":42,\"x\":-0.33,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-7.81},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.54},{\"duration\":24,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":12,\"rotate\":11.01}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":6,\"tweenEasing\":0,\"x\":0.68,\"y\":-0.95},{\"duration\":9,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":-1.15},{\"duration\":15,\"tweenEasing\":0,\"x\":0.15,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.83,\"y\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.64,\"y\":-3.63},{\"duration\":12,\"x\":0.49,\"y\":-4.08}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-47.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.3},{\"duration\":15,\"tweenEasing\":0,\"rotate\":46.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":113.18},{\"duration\":12,\"rotate\":106.03}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.92,\"y\":0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":3.65,\"y\":-0.2},{\"duration\":6,\"tweenEasing\":0,\"x\":3.65,\"y\":0.04},{\"duration\":9,\"tweenEasing\":0,\"x\":5.47,\"y\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":5.34,\"y\":-0.94},{\"duration\":15,\"tweenEasing\":0,\"x\":-1,\"y\":-5.83},{\"duration\":9,\"tweenEasing\":0,\"x\":-4.61,\"y\":-8.44},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.2,\"y\":19},{\"duration\":12,\"tweenEasing\":0,\"x\":-1.65,\"y\":17.16},{\"duration\":0,\"x\":-1.65,\"y\":18.77}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":6,\"tweenEasing\":0,\"rotate\":16.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.99},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.82},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.56},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-2.65},{\"duration\":0,\"rotate\":-7.04}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":3,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.55},{\"duration\":6,\"tweenEasing\":0,\"x\":3.38,\"y\":-2.31},{\"duration\":9,\"tweenEasing\":0,\"x\":6.04,\"y\":-0.88},{\"duration\":3,\"tweenEasing\":0,\"x\":5.92,\"y\":-2.75},{\"duration\":15,\"tweenEasing\":0,\"x\":0.43,\"y\":-5.91},{\"duration\":9,\"tweenEasing\":0,\"x\":1.24,\"y\":-0.91},{\"duration\":6,\"tweenEasing\":0,\"x\":1.44,\"y\":14.13},{\"duration\":12,\"tweenEasing\":0,\"x\":0.64,\"y\":12.94},{\"duration\":0,\"x\":0.8,\"y\":13.73}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":0.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.77},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-11.12},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":18,\"rotate\":-14.6}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":4.09,\"y\":3.06},{\"duration\":3,\"tweenEasing\":0,\"x\":3.85,\"y\":2.9},{\"duration\":6,\"tweenEasing\":0,\"x\":3.85,\"y\":3.14},{\"duration\":9,\"tweenEasing\":0,\"x\":4.46,\"y\":5.23},{\"duration\":3,\"tweenEasing\":0,\"x\":4.79,\"y\":5.7},{\"duration\":15,\"tweenEasing\":0,\"x\":-1.35,\"y\":-7.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.62,\"y\":-11.06},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.1,\"y\":18.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.54,\"y\":16.94},{\"duration\":0,\"x\":0.02,\"y\":21.42}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":29.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.15},{\"duration\":9,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.69},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-29.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-25.43},{\"duration\":12,\"tweenEasing\":0,\"rotate\":11.43},{\"duration\":0,\"rotate\":-13.96}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":3.03,\"y\":0.59},{\"duration\":6,\"tweenEasing\":0,\"x\":3.03,\"y\":0.83},{\"duration\":9,\"tweenEasing\":0,\"x\":3.4,\"y\":1.55},{\"duration\":3,\"tweenEasing\":0,\"x\":3.26,\"y\":-0.84},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.59,\"y\":-8.54},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.19,\"y\":-6.93},{\"duration\":6,\"tweenEasing\":0,\"x\":-1.19,\"y\":16.3},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.23,\"y\":16.86},{\"duration\":0,\"x\":-0.23,\"y\":19.27}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-17.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.59},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-0.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-16.47},{\"duration\":6,\"tweenEasing\":0,\"rotate\":20.03},{\"duration\":12,\"rotate\":10.97}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.09,\"y\":1.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.74},{\"duration\":15,\"tweenEasing\":0,\"x\":1.18,\"y\":-7.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.65,\"y\":-4.2},{\"duration\":6,\"tweenEasing\":0,\"x\":4.98,\"y\":12.38},{\"duration\":12,\"tweenEasing\":0,\"x\":5.3,\"y\":9.58},{\"duration\":0,\"x\":5.46,\"y\":10.7}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.64},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-10.59},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-22.36},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-49.93},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-57.44},{\"duration\":0,\"rotate\":-66.41}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.96},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.06},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":1.16},{\"duration\":15,\"tweenEasing\":0},{\"duration\":27,\"y\":0.9}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.32},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.26,\"y\":-1.92},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.26,\"y\":-2.64},{\"duration\":21,\"x\":-0.26,\"y\":-1.76}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95,\"y\":0.85},{\"duration\":9,\"tweenEasing\":0,\"x\":1.05,\"y\":1.05},{\"duration\":3,\"tweenEasing\":0,\"x\":1.25,\"y\":1.05},{\"duration\":15,\"tweenEasing\":0,\"x\":1.85,\"y\":1.05},{\"duration\":6,\"tweenEasing\":0,\"x\":2.15,\"y\":1.05},{\"duration\":21,\"x\":1.55,\"y\":1.05}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.77,\"y\":-0.38},{\"duration\":27,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.12,\"y\":-0.8},{\"duration\":18,\"x\":-0.52,\"y\":-0.81}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":23.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-19.83},{\"duration\":9,\"tweenEasing\":0,\"rotate\":23.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.82},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-5.18},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.15},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-22.3},{\"duration\":12,\"tweenEasing\":0,\"rotate\":-45.66},{\"duration\":0,\"rotate\":-37}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.6,\"y\":-0.08},{\"duration\":12,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.66,\"y\":-0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.47,\"y\":-1.53},{\"duration\":6,\"tweenEasing\":0,\"x\":-3.21,\"y\":1.78},{\"duration\":12,\"tweenEasing\":0,\"x\":-2.78,\"y\":2.31},{\"duration\":0,\"x\":-3.77,\"y\":2.53}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":6,\"tweenEasing\":0,\"rotate\":59.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":75.81},{\"duration\":9,\"tweenEasing\":0,\"rotate\":75.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":94.88},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-2.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.05},{\"duration\":6,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":12,\"tweenEasing\":0,\"rotate\":17.33},{\"duration\":0,\"rotate\":11.94}],\"scaleFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":69,\"x\":1.05,\"y\":1.05}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":6,\"tweenEasing\":0,\"x\":3.9,\"y\":0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":3.42,\"y\":0.4},{\"duration\":6,\"tweenEasing\":0,\"x\":3.42,\"y\":0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":3.25,\"y\":1.44},{\"duration\":3,\"tweenEasing\":0,\"x\":3.12,\"y\":-0.43},{\"duration\":15,\"tweenEasing\":0,\"x\":-0.94,\"y\":-5.88},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":0.45},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.26,\"y\":21.07},{\"duration\":12,\"tweenEasing\":0,\"x\":-3.06,\"y\":19.87},{\"duration\":0,\"x\":-2.9,\"y\":20.67}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":6,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-18.94},{\"duration\":15,\"tweenEasing\":0,\"rotate\":15.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-13.72},{\"duration\":18,\"rotate\":-52.69}]},{\"name\":\"backLight\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"y\":-3.65},{\"duration\":9,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":6,\"tweenEasing\":0,\"y\":-6.4},{\"duration\":27,\"x\":0.4,\"y\":-20.8}],\"scaleFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0,\"x\":0.69,\"y\":0.5},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":1.71},{\"duration\":6,\"tweenEasing\":0,\"x\":0.6,\"y\":2.57},{\"duration\":27,\"x\":0.11,\"y\":2.79}]}],\"slot\":[{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":12,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":9,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"leftArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"head\",\"displayFrame\":[{\"duration\":78,\"value\":1}]},{\"name\":\"rightArm\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":12}]},{\"name\":\"backLight\",\"colorFrame\":[{\"duration\":12,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":30,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":27,\"value\":{\"aM\":0}}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":78,\"value\":-1}]}]},{\"duration\":72,\"playTimes\":0,\"name\":\"Atked2\",\"bone\":[{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":18,\"tweenEasing\":0,\"x\":-9.24,\"y\":3.38},{\"duration\":21,\"tweenEasing\":0,\"x\":-8,\"y\":-5.07},{\"duration\":21,\"tweenEasing\":0,\"x\":-12.36,\"y\":-12.18},{\"duration\":9,\"x\":-12.27,\"y\":-18.84}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-28.4},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-16.18},{\"duration\":9,\"rotate\":-31.27}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.94,\"y\":5.33},{\"duration\":21,\"tweenEasing\":0,\"x\":1.63,\"y\":-8.11},{\"duration\":18,\"tweenEasing\":0,\"x\":0.34,\"y\":-14.59},{\"duration\":0,\"x\":0.58,\"y\":-17.3}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-39.38},{\"duration\":18,\"rotate\":-22.72}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":2,\"y\":-8.5},{\"duration\":24,\"tweenEasing\":0,\"x\":0.5,\"y\":-14.6},{\"duration\":3,\"x\":-0.1,\"y\":-19.9}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":29.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":65.43},{\"duration\":24,\"tweenEasing\":0,\"rotate\":44.46},{\"duration\":3,\"rotate\":60}]},{\"name\":\"leftHand\",\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.92},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.42},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-2.24},{\"duration\":0,\"rotate\":15.92}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.06},{\"duration\":24,\"tweenEasing\":0,\"rotate\":26.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.87},{\"duration\":0,\"rotate\":29.06}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.06,\"y\":-0.8},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":-0.64},{\"duration\":24,\"tweenEasing\":0,\"x\":3.04,\"y\":-0.99},{\"duration\":0,\"x\":2.06,\"y\":-0.8}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.27},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-15.89},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-12.23},{\"duration\":0,\"rotate\":-12.27}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.4,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":2.54,\"y\":0.65},{\"duration\":0,\"x\":2.4,\"y\":0.46}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":-23.09},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-31.16},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-21.98},{\"duration\":0,\"rotate\":-23.09}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":2.1,\"y\":2.36},{\"duration\":24,\"tweenEasing\":0,\"x\":3.17,\"y\":2.85},{\"duration\":24,\"tweenEasing\":0,\"x\":3.07,\"y\":2.85},{\"duration\":0,\"x\":2.1,\"y\":2.36}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":21.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":0,\"rotate\":27.28}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":1.72,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":2.73,\"y\":0.63},{\"duration\":24,\"tweenEasing\":0,\"x\":2.71,\"y\":0.23},{\"duration\":0,\"x\":1.72,\"y\":0.12}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":9.28},{\"duration\":24,\"tweenEasing\":0,\"rotate\":14.42},{\"duration\":0,\"rotate\":13.3}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":0.12,\"y\":0.12},{\"duration\":24,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":13.71},{\"duration\":24,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":24,\"tweenEasing\":0,\"rotate\":16.11},{\"duration\":0,\"rotate\":13.71}]},{\"name\":\"leg\",\"scaleFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"y\":0.9},{\"duration\":6,\"tweenEasing\":0,\"y\":0.9},{\"duration\":18,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":6,\"tweenEasing\":0,\"x\":1.1,\"y\":0.8},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":72,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-11.03},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":72,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-1.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":0,\"rotate\":1.98}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.28,\"y\":1.58},{\"duration\":24,\"tweenEasing\":0,\"x\":3.54,\"y\":1.45},{\"duration\":0,\"x\":3.28,\"y\":1.58}],\"rotateFrame\":[{\"duration\":24,\"tweenEasing\":0,\"rotate\":29.2},{\"duration\":24,\"tweenEasing\":0,\"rotate\":11.66},{\"duration\":24,\"tweenEasing\":0,\"rotate\":23.61},{\"duration\":0,\"rotate\":29.2}]}],\"slot\":[{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":3,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":3,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect5\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]},{\"name\":\"effect6\",\"displayFrame\":[{\"duration\":72,\"value\":-1}]}]},{\"duration\":102,\"playTimes\":0,\"name\":\"Idle2\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.2,\"y\":-5.6},{\"duration\":24,\"tweenEasing\":0,\"x\":3.2,\"y\":-11.9},{\"duration\":0,\"x\":7,\"y\":-15.1}],\"rotateFrame\":[{\"duration\":39,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-27.23},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-17.6},{\"duration\":0,\"rotate\":-35.03}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.2,\"y\":-9.12},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.04,\"y\":-16.4},{\"duration\":12,\"x\":-6.4,\"y\":-19.84}],\"rotateFrame\":[{\"duration\":27,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":22.39},{\"duration\":21,\"tweenEasing\":0,\"rotate\":39.5},{\"duration\":12,\"rotate\":22.14}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":4.4,\"y\":-6.1},{\"duration\":24,\"tweenEasing\":0,\"x\":5.5,\"y\":-13.8},{\"duration\":24,\"x\":6.1,\"y\":-19.3}],\"rotateFrame\":[{\"duration\":33,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-24.94},{\"duration\":24,\"rotate\":-14.84}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":2.4,\"y\":-5.6},{\"duration\":18,\"tweenEasing\":0,\"x\":3.8,\"y\":-11.1},{\"duration\":9,\"x\":4.3,\"y\":-15.2}],\"rotateFrame\":[{\"duration\":36,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-17.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-36.39},{\"duration\":9,\"rotate\":-23.84}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"x\":-2.27,\"y\":-6.67},{\"duration\":18,\"tweenEasing\":0,\"x\":-1.74,\"y\":-10.54},{\"duration\":33,\"x\":-3.06,\"y\":-17.46}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":18,\"tweenEasing\":0,\"rotate\":68.81},{\"duration\":33,\"rotate\":27.88}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":0.04,\"y\":0.18},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-12.3},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-14.11},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":0.18,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.19,\"y\":0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":6.55},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.86},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":3.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-6.22},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-2.77},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.46},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.64},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01,\"y\":-1.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.1,\"y\":-0.71},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":37.04},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":9,\"tweenEasing\":0,\"rotate\":35.61},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.96},{\"duration\":18,\"tweenEasing\":0,\"rotate\":31.61},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.2,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.42,\"y\":-1.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.19},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.27,\"y\":-1.81},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.27,\"y\":-2.27},{\"duration\":0,\"x\":-1.2,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":30.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":9,\"tweenEasing\":0,\"rotate\":19.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":25.64},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":9,\"tweenEasing\":0,\"rotate\":18.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":22.76},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.14,\"y\":0.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.17},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-0.74},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.07},{\"duration\":9,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":9,\"tweenEasing\":0,\"x\":0.34,\"y\":0.3},{\"duration\":18,\"tweenEasing\":0,\"x\":0.28,\"y\":-1.06},{\"duration\":0,\"x\":-1.06,\"y\":0.14}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.06},{\"duration\":54,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"rotate\":-4.1}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":0.51,\"y\":-0.36},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.3},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.39},{\"duration\":9,\"tweenEasing\":0,\"x\":0.67,\"y\":-1},{\"duration\":18,\"tweenEasing\":0,\"x\":0.86,\"y\":-1.86},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-39.74},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-45.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.94},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-38.24},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.16},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.49},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.73},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.56},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":-0.48},{\"duration\":18,\"tweenEasing\":0,\"y\":-1.05},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.48},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":0,\"rotate\":-6.48}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":18,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0}]},{\"name\":\"leg\",\"translateFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":30}],\"scaleFrame\":[{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":24,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":1.04,\"y\":1.1},{\"duration\":30}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.97,\"y\":-0.57},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.05,\"y\":-0.2},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.85,\"y\":-0.18},{\"duration\":0,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":9,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.49},{\"duration\":18,\"tweenEasing\":0,\"rotate\":10.34},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.15},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.45,\"y\":0.1},{\"duration\":18,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.01},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":45.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":46.54},{\"duration\":9,\"tweenEasing\":0,\"rotate\":40.53},{\"duration\":18,\"tweenEasing\":0,\"rotate\":48.89},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.76,\"y\":0.39},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.26},{\"duration\":9,\"tweenEasing\":0,\"x\":1.13,\"y\":-0.75},{\"duration\":9,\"tweenEasing\":0,\"x\":0.92,\"y\":-0.49},{\"duration\":18,\"tweenEasing\":0,\"x\":1.13,\"y\":-1.07},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-30.66},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-27.88},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-34.28},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-25.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-35.22},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-23.55},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-31.48},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":39,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":27,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":12,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0},{\"duration\":24,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":36,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":15,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":33,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":102,\"value\":-1}]}]},{\"duration\":66,\"playTimes\":0,\"name\":\"Idle1\",\"bone\":[{\"name\":\"effect6\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"tweenEasing\":0,\"x\":3.46,\"y\":-6.84},{\"duration\":0,\"x\":5.42,\"y\":-9.87}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":24,\"rotate\":-10.38}]},{\"name\":\"effect5\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-4,\"y\":-3.31},{\"duration\":15,\"tweenEasing\":0,\"x\":-5.03,\"y\":-8.91},{\"duration\":9,\"x\":-5.37,\"y\":-12.35}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":27.97},{\"duration\":15,\"tweenEasing\":0,\"rotate\":-3.77},{\"duration\":9,\"rotate\":-10.94}]},{\"name\":\"effect4\",\"translateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":3.88,\"y\":-6.4},{\"duration\":21,\"tweenEasing\":0,\"x\":6.75,\"y\":-10.97},{\"duration\":9,\"x\":6.51,\"y\":-13.37}],\"rotateFrame\":[{\"duration\":18,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":19.87},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-1.94},{\"duration\":9,\"rotate\":-29.35}]},{\"name\":\"effect3\",\"translateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":3.4,\"y\":-7.87},{\"duration\":18,\"tweenEasing\":0,\"x\":3.13,\"y\":-14.13},{\"duration\":0,\"x\":3.67,\"y\":-17.86}],\"rotateFrame\":[{\"duration\":9,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-25.82},{\"duration\":18,\"tweenEasing\":0,\"rotate\":-13.32},{\"duration\":0,\"rotate\":-23.08}]},{\"name\":\"effect2\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"x\":-2.32,\"y\":-5.92},{\"duration\":21,\"tweenEasing\":0,\"x\":-5.84,\"y\":-9.44},{\"duration\":6,\"x\":-7.52,\"y\":-12}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0,\"rotate\":35.13},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.98},{\"duration\":6,\"rotate\":29.58}]},{\"name\":\"leftHand\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":24,\"tweenEasing\":0,\"x\":0.29,\"y\":0.43},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-4.45},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-6.58},{\"duration\":0}]},{\"name\":\"leftFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-3.35},{\"duration\":24,\"tweenEasing\":0,\"rotate\":7.11},{\"duration\":0}]},{\"name\":\"leftShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.56},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":13.8},{\"duration\":24,\"tweenEasing\":0,\"rotate\":4.52},{\"duration\":0}]},{\"name\":\"leftArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.99},{\"duration\":24,\"tweenEasing\":0,\"x\":0.18,\"y\":-0.92},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.02},{\"duration\":24,\"tweenEasing\":0,\"rotate\":12.08},{\"duration\":0}]},{\"name\":\"head\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.69},{\"duration\":24,\"tweenEasing\":0,\"y\":-0.45},{\"duration\":0}]},{\"name\":\"rightShoulder\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":0.32,\"y\":-1.9},{\"duration\":24,\"tweenEasing\":0,\"x\":0.32,\"y\":-0.78},{\"duration\":0}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-10.95},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-8.38},{\"duration\":0}]},{\"name\":\"body\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"y\":-0.72},{\"duration\":24,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.32},{\"duration\":0}],\"scaleFrame\":[{\"duration\":21,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":24,\"tweenEasing\":0,\"x\":1.03,\"y\":1.03},{\"duration\":0}]},{\"name\":\"rightHand\",\"translateFrame\":[{\"duration\":66,\"x\":-0.97,\"y\":-0.57}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":11.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":16.12},{\"duration\":24,\"tweenEasing\":0,\"rotate\":15.51},{\"duration\":0,\"rotate\":11.7}]},{\"name\":\"rightFrontArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.01},{\"duration\":21,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.52},{\"duration\":24,\"tweenEasing\":0,\"x\":-0.07,\"y\":0.13},{\"duration\":0,\"x\":-0.15,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":21.7},{\"duration\":21,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":24,\"tweenEasing\":0,\"rotate\":32.17},{\"duration\":0,\"rotate\":21.7}]},{\"name\":\"rightArm\",\"translateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"x\":0.88,\"y\":1.24},{\"duration\":21,\"tweenEasing\":0,\"x\":0.74,\"y\":0.46},{\"duration\":24,\"tweenEasing\":0,\"x\":1.06,\"y\":0.7},{\"duration\":0,\"x\":0.88,\"y\":1.24}],\"rotateFrame\":[{\"duration\":21,\"tweenEasing\":0,\"rotate\":-6.67},{\"duration\":21,\"tweenEasing\":0,\"rotate\":-26.33},{\"duration\":24,\"tweenEasing\":0,\"rotate\":-19.75},{\"duration\":0,\"rotate\":-6.67}]}],\"slot\":[{\"name\":\"effect6\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":24,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect5\",\"colorFrame\":[{\"duration\":6,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":15,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect4\",\"colorFrame\":[{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":9,\"value\":{\"aM\":0}}]},{\"name\":\"effect3\",\"colorFrame\":[{\"duration\":9,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":21,\"tweenEasing\":0},{\"duration\":18,\"tweenEasing\":0},{\"duration\":0,\"value\":{\"aM\":0}}]},{\"name\":\"effect2\",\"colorFrame\":[{\"duration\":21,\"tweenEasing\":0,\"value\":{\"aM\":0}},{\"duration\":18,\"tweenEasing\":0},{\"duration\":21,\"tweenEasing\":0},{\"duration\":6,\"value\":{\"aM\":0}}]},{\"name\":\"backLight\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json index 86bffe5..8a83dda 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json @@ -1 +1 @@ -{"width":128,"SubTexture":[{"frameWidth":23,"y":44,"frameHeight":22,"width":22,"frameX":-1,"height":22,"name":"biu","frameY":0,"x":53},{"width":9,"y":68,"height":14,"name":"rightArm","x":76},{"frameWidth":29,"y":35,"frameHeight":32,"width":26,"frameX":-1,"height":32,"name":"yinmoqe00","frameY":0,"x":89},{"width":34,"y":1,"height":41,"name":"body","x":53},{"width":9,"y":44,"height":13,"name":"rightShoulder","x":77},{"width":19,"y":50,"height":18,"name":"rightFrontArm","x":23},{"width":14,"y":70,"height":14,"name":"rightHand","x":23},{"width":12,"y":68,"height":12,"name":"leftArm","x":62},{"width":13,"y":73,"height":12,"name":"leftShoulder","x":1},{"width":20,"y":50,"height":21,"name":"leftFrontArm","x":1},{"width":33,"y":1,"height":32,"name":"head","x":89},{"width":50,"y":1,"height":47,"name":"head2","x":1},{"width":16,"y":68,"height":14,"name":"leftHand","x":44},{"frameWidth":8,"y":59,"frameHeight":8,"width":4,"frameX":-1,"height":4,"name":"huomiao01","frameY":-2,"x":77}],"height":128,"name":"SoldierFireGhost","imagePath":"SoldierFireGhost_tex.png"} \ No newline at end of file +{"width":64,"imagePath":"SoldierFireGhost_tex.png","SubTexture":[{"frameWidth":12,"y":42,"frameHeight":11,"width":11,"frameX":-1,"height":11,"name":"biu","frameY":0,"x":16},{"width":5,"y":42,"height":7,"name":"rightArm","x":29},{"frameWidth":15,"y":27,"frameHeight":16,"width":13,"frameX":-1,"height":16,"name":"yinmoqe00","frameY":0,"x":1},{"width":17,"y":1,"height":21,"name":"body","x":28},{"width":5,"y":42,"height":7,"name":"rightShoulder","x":36},{"width":10,"y":45,"height":9,"name":"rightFrontArm","x":1},{"width":7,"y":56,"height":7,"name":"rightHand","x":1},{"width":6,"y":55,"height":6,"name":"leftArm","x":32},{"width":7,"y":55,"height":6,"name":"leftShoulder","x":23},{"width":10,"y":27,"height":11,"name":"leftFrontArm","x":16},{"width":17,"y":24,"height":16,"name":"head","x":28},{"width":25,"y":1,"height":24,"name":"head2","x":1},{"width":8,"y":55,"height":7,"name":"leftHand","x":13},{"frameWidth":4,"y":51,"frameHeight":4,"width":2,"frameX":-1,"height":2,"name":"huomiao01","frameY":-1,"x":29}],"height":64,"name":"SoldierFireGhost"} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta index 465cb42..71874e6 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta @@ -1,7 +1,7 @@ { "ver": "1.0.0", "uuid": "4a9187d5-a9ad-4464-a03c-d2f3cc277051", - "atlasJson": "{\"width\":128,\"SubTexture\":[{\"frameWidth\":23,\"y\":44,\"frameHeight\":22,\"width\":22,\"frameX\":-1,\"height\":22,\"name\":\"biu\",\"frameY\":0,\"x\":53},{\"width\":9,\"y\":68,\"height\":14,\"name\":\"rightArm\",\"x\":76},{\"frameWidth\":29,\"y\":35,\"frameHeight\":32,\"width\":26,\"frameX\":-1,\"height\":32,\"name\":\"yinmoqe00\",\"frameY\":0,\"x\":89},{\"width\":34,\"y\":1,\"height\":41,\"name\":\"body\",\"x\":53},{\"width\":9,\"y\":44,\"height\":13,\"name\":\"rightShoulder\",\"x\":77},{\"width\":19,\"y\":50,\"height\":18,\"name\":\"rightFrontArm\",\"x\":23},{\"width\":14,\"y\":70,\"height\":14,\"name\":\"rightHand\",\"x\":23},{\"width\":12,\"y\":68,\"height\":12,\"name\":\"leftArm\",\"x\":62},{\"width\":13,\"y\":73,\"height\":12,\"name\":\"leftShoulder\",\"x\":1},{\"width\":20,\"y\":50,\"height\":21,\"name\":\"leftFrontArm\",\"x\":1},{\"width\":33,\"y\":1,\"height\":32,\"name\":\"head\",\"x\":89},{\"width\":50,\"y\":1,\"height\":47,\"name\":\"head2\",\"x\":1},{\"width\":16,\"y\":68,\"height\":14,\"name\":\"leftHand\",\"x\":44},{\"frameWidth\":8,\"y\":59,\"frameHeight\":8,\"width\":4,\"frameX\":-1,\"height\":4,\"name\":\"huomiao01\",\"frameY\":-2,\"x\":77}],\"height\":128,\"name\":\"SoldierFireGhost\",\"imagePath\":\"SoldierFireGhost_tex.png\"}", + "atlasJson": "{\"width\":64,\"imagePath\":\"SoldierFireGhost_tex.png\",\"SubTexture\":[{\"frameWidth\":12,\"y\":42,\"frameHeight\":11,\"width\":11,\"frameX\":-1,\"height\":11,\"name\":\"biu\",\"frameY\":0,\"x\":16},{\"width\":5,\"y\":42,\"height\":7,\"name\":\"rightArm\",\"x\":29},{\"frameWidth\":15,\"y\":27,\"frameHeight\":16,\"width\":13,\"frameX\":-1,\"height\":16,\"name\":\"yinmoqe00\",\"frameY\":0,\"x\":1},{\"width\":17,\"y\":1,\"height\":21,\"name\":\"body\",\"x\":28},{\"width\":5,\"y\":42,\"height\":7,\"name\":\"rightShoulder\",\"x\":36},{\"width\":10,\"y\":45,\"height\":9,\"name\":\"rightFrontArm\",\"x\":1},{\"width\":7,\"y\":56,\"height\":7,\"name\":\"rightHand\",\"x\":1},{\"width\":6,\"y\":55,\"height\":6,\"name\":\"leftArm\",\"x\":32},{\"width\":7,\"y\":55,\"height\":6,\"name\":\"leftShoulder\",\"x\":23},{\"width\":10,\"y\":27,\"height\":11,\"name\":\"leftFrontArm\",\"x\":16},{\"width\":17,\"y\":24,\"height\":16,\"name\":\"head\",\"x\":28},{\"width\":25,\"y\":1,\"height\":24,\"name\":\"head2\",\"x\":1},{\"width\":8,\"y\":55,\"height\":7,\"name\":\"leftHand\",\"x\":13},{\"frameWidth\":4,\"y\":51,\"frameHeight\":4,\"width\":2,\"frameX\":-1,\"height\":2,\"name\":\"huomiao01\",\"frameY\":-1,\"x\":29}],\"height\":64,\"name\":\"SoldierFireGhost\"}", "texture": "700d963b-2192-4219-a066-8be5b3db7453", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png index 962fd0e..e988f6f 100644 Binary files a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png and b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png differ diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta index 362b035..f4a6b67 100644 --- a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta @@ -16,14 +16,14 @@ "trimType": "auto", "trimThreshold": 1, "rotated": false, - "offsetX": -2.5, - "offsetY": 21, + "offsetX": -9, + "offsetY": 0, "trimX": 1, "trimY": 1, - "width": 121, - "height": 84, - "rawWidth": 128, - "rawHeight": 128, + "width": 44, + "height": 62, + "rawWidth": 64, + "rawHeight": 64, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, diff --git a/frontend/assets/resources/animation/BluePacman.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim.meta similarity index 63% rename from frontend/assets/resources/animation/BluePacman.meta rename to frontend/assets/resources/animation/SoldierFireGhost/frameAnim.meta index 5b3979f..abb4b72 100644 --- a/frontend/assets/resources/animation/BluePacman.meta +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim.meta @@ -1,6 +1,6 @@ { "ver": "1.0.1", - "uuid": "0e243c83-a137-4880-9bfe-9e1b57adc453", + "uuid": "3b7d864f-c9fd-4030-a6dc-9814ee12fec1", "isSubpackage": false, "subpackageName": "", "subMetas": {} diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atk1.anim b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atk1.anim new file mode 100644 index 0000000..f7dede7 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atk1.anim @@ -0,0 +1,229 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "Atk1", + "_objFlags": 0, + "_native": "", + "_duration": 0.5833333333333334, + "sample": 60, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "7fedc57f-6998-45fc-899d-ea5edd41ab13" + } + }, + { + "frame": 0.016666666666666666, + "value": { + "__uuid__": "d55c2f3c-9110-4627-b8b2-0f9395f0d145" + } + }, + { + "frame": 0.03333333333333333, + "value": { + "__uuid__": "1228879d-d28e-48e4-a3ce-5ceda0d1831f" + } + }, + { + "frame": 0.05, + "value": { + "__uuid__": "e88dd5c4-cc5d-46e0-88de-e382e2bcadd7" + } + }, + { + "frame": 0.06666666666666667, + "value": { + "__uuid__": "df069f5c-7fc0-4731-bb7f-9d2032498e4c" + } + }, + { + "frame": 0.08333333333333333, + "value": { + "__uuid__": "4815763d-64e1-4b15-b795-38900861c651" + } + }, + { + "frame": 0.1, + "value": { + "__uuid__": "0dca4f06-bf25-4e7f-ac3a-1687e284f5d6" + } + }, + { + "frame": 0.11666666666666667, + "value": { + "__uuid__": "de8db3c9-affd-45ef-a536-e2d28ebc8094" + } + }, + { + "frame": 0.13333333333333333, + "value": { + "__uuid__": "baaafb8b-9c1a-45ea-ba80-eb8048b61b57" + } + }, + { + "frame": 0.15, + "value": { + "__uuid__": "9ffa7db6-1aec-4a1e-a8a9-118f2a6e50dc" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "f2f296ad-0e19-4b00-b061-8c9edff98d0d" + } + }, + { + "frame": 0.18333333333333332, + "value": { + "__uuid__": "3e546607-d27f-40fa-9967-771c55a12590" + } + }, + { + "frame": 0.2, + "value": { + "__uuid__": "fece0129-e8ae-45be-b963-e2b821add0d3" + } + }, + { + "frame": 0.21666666666666667, + "value": { + "__uuid__": "f5f48bec-3d2a-49de-9416-26cc75d34e32" + } + }, + { + "frame": 0.23333333333333334, + "value": { + "__uuid__": "b083cfc9-a439-4600-b336-b50ca08b68c4" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "d04003f5-16c1-4510-898b-9148b76eb958" + } + }, + { + "frame": 0.26666666666666666, + "value": { + "__uuid__": "2159f038-bffa-480c-a2bd-c305868f2fd9" + } + }, + { + "frame": 0.2833333333333333, + "value": { + "__uuid__": "1d3de292-7dd4-4e28-b1d2-23fc38318390" + } + }, + { + "frame": 0.3, + "value": { + "__uuid__": "3031ca7c-e1f7-4d14-b29e-5a7102cab245" + } + }, + { + "frame": 0.31666666666666665, + "value": { + "__uuid__": "987e9d14-b6fc-46c7-93ed-8914e42bfa8b" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "327db66e-2136-4d52-9727-399d60715a86" + } + }, + { + "frame": 0.35, + "value": { + "__uuid__": "82ab2dcd-22e9-490f-96c4-4786018c91d0" + } + }, + { + "frame": 0.36666666666666664, + "value": { + "__uuid__": "36812959-85a6-40fb-9a38-1b4d871eba92" + } + }, + { + "frame": 0.38333333333333336, + "value": { + "__uuid__": "2941d74c-7b9c-43dc-a5c4-45952220d9a2" + } + }, + { + "frame": 0.4, + "value": { + "__uuid__": "4aed2032-25d5-42fd-983a-4473e2985a99" + } + }, + { + "frame": 0.4166666666666667, + "value": { + "__uuid__": "3db216c1-3362-4404-8db6-11615bfa6e64" + } + }, + { + "frame": 0.43333333333333335, + "value": { + "__uuid__": "2cf0cb17-cbb0-4d64-9c91-83639a363158" + } + }, + { + "frame": 0.45, + "value": { + "__uuid__": "9c057e2c-1dc4-4c6c-adb7-85bf691cefb5" + } + }, + { + "frame": 0.4666666666666667, + "value": { + "__uuid__": "49c07a7f-2ace-4e2b-ba4c-724aad12ec5c" + } + }, + { + "frame": 0.48333333333333334, + "value": { + "__uuid__": "cec3c067-c958-4988-b113-2f10d7f4f5ea" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "ad57f789-a25a-411c-b130-62a8ab16177f" + } + }, + { + "frame": 0.5166666666666667, + "value": { + "__uuid__": "3c2a21a5-7c85-48f3-95ff-0d7a32e5e852" + } + }, + { + "frame": 0.5333333333333333, + "value": { + "__uuid__": "fe15eece-07a5-4d15-927b-af980aea7693" + } + }, + { + "frame": 0.55, + "value": { + "__uuid__": "30ac103a-0f2b-45db-9442-461479beeb0d" + } + }, + { + "frame": 0.5666666666666667, + "value": { + "__uuid__": "76272ec6-0721-4496-941b-5cb6a52b2c35" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atk1.anim.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atk1.anim.meta new file mode 100644 index 0000000..662f42a --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atk1.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "2.1.0", + "uuid": "c738236a-0702-45f8-aa38-99457b051997", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atked1.anim b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atked1.anim new file mode 100644 index 0000000..67fe0ad --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atked1.anim @@ -0,0 +1,133 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "Atked1", + "_objFlags": 0, + "_native": "", + "_duration": 0.31666666666666665, + "sample": 60, + "speed": 1, + "wrapMode": 1, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "6fd7cfcb-95b2-4197-a065-6bc48365f855" + } + }, + { + "frame": 0.016666666666666666, + "value": { + "__uuid__": "39aaeff6-3116-4e12-8ec4-9362a8a2fea2" + } + }, + { + "frame": 0.03333333333333333, + "value": { + "__uuid__": "fb4e42e6-0fae-48d4-a600-217e01d43e57" + } + }, + { + "frame": 0.05, + "value": { + "__uuid__": "2af606d7-4b3d-4355-95d1-a3ab673d2a2e" + } + }, + { + "frame": 0.06666666666666667, + "value": { + "__uuid__": "be18e65b-346c-4efb-84cb-7f317fcaf8ac" + } + }, + { + "frame": 0.08333333333333333, + "value": { + "__uuid__": "d269af72-8b89-420c-ba9e-6892cda06e80" + } + }, + { + "frame": 0.1, + "value": { + "__uuid__": "30539c9d-6dbb-4409-8562-6c24b12010c2" + } + }, + { + "frame": 0.11666666666666667, + "value": { + "__uuid__": "96b655f9-9a90-4cb1-86ab-0be881ad8983" + } + }, + { + "frame": 0.13333333333333333, + "value": { + "__uuid__": "a86f8107-3d8d-426e-9a17-c856c1ab292a" + } + }, + { + "frame": 0.15, + "value": { + "__uuid__": "d7f99f14-9257-426a-9e90-a948e7ca8d23" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "809dcbcf-9edd-4b8b-8bc8-42394ce0a9c2" + } + }, + { + "frame": 0.18333333333333332, + "value": { + "__uuid__": "f3e74927-2eea-4306-ba0a-c89972ca88f1" + } + }, + { + "frame": 0.2, + "value": { + "__uuid__": "af7a23f6-9b5c-4fe8-aa74-741f18500866" + } + }, + { + "frame": 0.21666666666666667, + "value": { + "__uuid__": "4cc6ecdb-3741-4a2e-87a0-a93739a38d37" + } + }, + { + "frame": 0.23333333333333334, + "value": { + "__uuid__": "f809b6d3-6f5b-4cf4-b148-5cf7fdf407a5" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "b1c9e526-fe26-42a8-9257-7e5549847273" + } + }, + { + "frame": 0.26666666666666666, + "value": { + "__uuid__": "db62c862-7553-4f99-b758-8c4a4aec438a" + } + }, + { + "frame": 0.2833333333333333, + "value": { + "__uuid__": "55f68905-bff7-48ea-b497-5077f49b2aca" + } + }, + { + "frame": 0.3, + "value": { + "__uuid__": "b01f45f9-c394-4706-aae1-d1d26a84f48a" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atked1.anim.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atked1.anim.meta new file mode 100644 index 0000000..8cfb54c --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Atked1.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "2.1.0", + "uuid": "c69bcceb-d7d1-4e33-9623-e2a374a0a6b6", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Idle1.anim b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Idle1.anim new file mode 100644 index 0000000..325072b --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Idle1.anim @@ -0,0 +1,432 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "Idle1", + "_objFlags": 0, + "_native": "", + "_duration": 1.1166666666666667, + "sample": 60, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "91bba749-7338-4bdc-b9a2-0450a183378f" + } + }, + { + "frame": 0.016666666666666666, + "value": { + "__uuid__": "31b10e1f-7433-4c0d-b9a7-576adc0cdb51" + } + }, + { + "frame": 0.03333333333333333, + "value": { + "__uuid__": "80d4afc7-d21a-4eec-ab5e-ec833e1e905b" + } + }, + { + "frame": 0.05, + "value": { + "__uuid__": "d75070b5-3dbe-4d77-886e-8851f31e8ac8" + } + }, + { + "frame": 0.06666666666666667, + "value": { + "__uuid__": "a30e880e-1ff1-434d-bdbc-a3a2e0de671b" + } + }, + { + "frame": 0.08333333333333333, + "value": { + "__uuid__": "87cec524-adf7-48a6-af37-b1bae14b9317" + } + }, + { + "frame": 0.1, + "value": { + "__uuid__": "d415a590-b4bf-4590-834a-b075705e063a" + } + }, + { + "frame": 0.11666666666666667, + "value": { + "__uuid__": "e8b7eb99-0b52-4f01-8dd3-6c1ff23a8552" + } + }, + { + "frame": 0.13333333333333333, + "value": { + "__uuid__": "599c03fd-c5f1-45b1-9cd8-0164f8e82fe0" + } + }, + { + "frame": 0.15, + "value": { + "__uuid__": "0f71de95-9947-40da-929f-dd25bf43884e" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "99980a57-3af2-4c23-84b8-87759ee79e10" + } + }, + { + "frame": 0.18333333333333332, + "value": { + "__uuid__": "ab001dd3-587c-4a23-adbc-5f0d3eedccaf" + } + }, + { + "frame": 0.2, + "value": { + "__uuid__": "9869ec96-1c78-482e-bff8-95d0b064d0f6" + } + }, + { + "frame": 0.21666666666666667, + "value": { + "__uuid__": "0863d34e-0116-4134-b17e-32dae8f1589f" + } + }, + { + "frame": 0.23333333333333334, + "value": { + "__uuid__": "10454569-56bb-4721-9a94-49015f5e11cc" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "b13c9ee9-a497-43b3-9b54-83250bc62cc6" + } + }, + { + "frame": 0.26666666666666666, + "value": { + "__uuid__": "80e898d9-10a9-4817-988c-7571744173e7" + } + }, + { + "frame": 0.2833333333333333, + "value": { + "__uuid__": "0e4e927d-0c67-43a1-aade-a6b5ea3fe498" + } + }, + { + "frame": 0.3, + "value": { + "__uuid__": "6c327da9-60a2-4b63-89ca-05e7bb9b8c5f" + } + }, + { + "frame": 0.31666666666666665, + "value": { + "__uuid__": "9e71217f-0580-481e-b2ea-8886eb7cf492" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "ed851c4e-6a42-4643-8d50-1bac3d55b1ac" + } + }, + { + "frame": 0.35, + "value": { + "__uuid__": "3a4738ba-bf3c-47cf-98f7-7e68aba0c96c" + } + }, + { + "frame": 0.36666666666666664, + "value": { + "__uuid__": "d035e717-c8ab-4cdc-b59f-c61c9e85990a" + } + }, + { + "frame": 0.38333333333333336, + "value": { + "__uuid__": "4bf6ea06-54bf-4c25-87f7-c7d9dca56fab" + } + }, + { + "frame": 0.4, + "value": { + "__uuid__": "a4b324b1-1191-43ee-ac76-a4536d1dbac7" + } + }, + { + "frame": 0.4166666666666667, + "value": { + "__uuid__": "4e2ac5fa-1c68-4cbd-80e6-a94af579796d" + } + }, + { + "frame": 0.43333333333333335, + "value": { + "__uuid__": "64cd0353-429a-4a47-a6fc-b0f12e565e94" + } + }, + { + "frame": 0.45, + "value": { + "__uuid__": "3fa0ae73-f8f8-455f-82c3-24a428379e95" + } + }, + { + "frame": 0.4666666666666667, + "value": { + "__uuid__": "a4679596-56d5-44f2-a349-7579ad7fbe33" + } + }, + { + "frame": 0.48333333333333334, + "value": { + "__uuid__": "3293d474-dfb3-412a-aca1-ce76f70a2181" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "9794aec3-5e18-4df4-bae2-296f7c5ed935" + } + }, + { + "frame": 0.5166666666666667, + "value": { + "__uuid__": "4373d7b7-ea22-4ba2-a6df-c0672d4310a2" + } + }, + { + "frame": 0.5333333333333333, + "value": { + "__uuid__": "89b6617e-2131-4bc6-840a-048af7944bb8" + } + }, + { + "frame": 0.55, + "value": { + "__uuid__": "9c267a7b-ab24-49b4-a2f3-26d885799f23" + } + }, + { + "frame": 0.5666666666666667, + "value": { + "__uuid__": "df3255ea-00af-47c2-9deb-4ccd27a62706" + } + }, + { + "frame": 0.5833333333333334, + "value": { + "__uuid__": "e15242c9-29ba-411a-a93f-dddad5613956" + } + }, + { + "frame": 0.6, + "value": { + "__uuid__": "ef3f8029-d5cc-4024-95ca-1f2aa062a0d5" + } + }, + { + "frame": 0.6166666666666667, + "value": { + "__uuid__": "7b48f205-a1e8-4233-8c72-11ae9c0ccea7" + } + }, + { + "frame": 0.6333333333333333, + "value": { + "__uuid__": "ffc69bce-fd84-42d8-b8c9-fe05e6c7fa03" + } + }, + { + "frame": 0.65, + "value": { + "__uuid__": "81805795-ab34-47c1-ab45-57f54d28e72f" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "adae26a6-7991-4583-966c-4364ba35474d" + } + }, + { + "frame": 0.6833333333333333, + "value": { + "__uuid__": "ab51a779-10b7-4039-ac45-6ada002e702f" + } + }, + { + "frame": 0.7, + "value": { + "__uuid__": "173d4746-0af5-40ae-a472-ba6406c700dc" + } + }, + { + "frame": 0.7166666666666667, + "value": { + "__uuid__": "4054d644-4b5c-473d-ad2c-1c1eb06b01d7" + } + }, + { + "frame": 0.7333333333333333, + "value": { + "__uuid__": "0f55009f-71dc-4e70-8152-7dbc2a16a17c" + } + }, + { + "frame": 0.75, + "value": { + "__uuid__": "d273f52f-4ec1-4ccf-8820-92879682213e" + } + }, + { + "frame": 0.7666666666666667, + "value": { + "__uuid__": "37c2f336-a3c8-4b46-8031-d48c3f36c675" + } + }, + { + "frame": 0.7833333333333333, + "value": { + "__uuid__": "8cee57cb-5e79-4fe9-8368-745b38a37021" + } + }, + { + "frame": 0.8, + "value": { + "__uuid__": "4e67aa7d-d6a6-405b-99c4-ef5be609fdf4" + } + }, + { + "frame": 0.8166666666666667, + "value": { + "__uuid__": "b0b7fc1a-f42a-4977-bfef-93841bdfa2f8" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "352bbb78-d87c-425d-b39e-a401432f0070" + } + }, + { + "frame": 0.85, + "value": { + "__uuid__": "9aaadf6a-808f-44f4-b7a8-392138851168" + } + }, + { + "frame": 0.8666666666666667, + "value": { + "__uuid__": "a319abd0-a689-400c-8f2a-94ccc70e50f9" + } + }, + { + "frame": 0.8833333333333333, + "value": { + "__uuid__": "2efd4c0f-10c1-41be-81b5-40b3d10cb863" + } + }, + { + "frame": 0.9, + "value": { + "__uuid__": "8b94f28d-7da8-4e83-a9d6-46072b24a847" + } + }, + { + "frame": 0.9166666666666666, + "value": { + "__uuid__": "1f153a21-9a57-4bf7-a7bb-fa2a2e3b9484" + } + }, + { + "frame": 0.9333333333333333, + "value": { + "__uuid__": "2d3ad677-51b8-4d53-924c-dea3f66f0510" + } + }, + { + "frame": 0.95, + "value": { + "__uuid__": "68aabf9d-5b21-4405-b92d-18a837895c37" + } + }, + { + "frame": 0.9666666666666667, + "value": { + "__uuid__": "cb893520-96b5-4ce4-a9dd-90ca4eac1882" + } + }, + { + "frame": 0.9833333333333333, + "value": { + "__uuid__": "498ee98f-7211-4495-99fe-662aee098217" + } + }, + { + "frame": 1, + "value": { + "__uuid__": "da05be2e-e07f-4081-a99d-9c1b1459b862" + } + }, + { + "frame": 1.0166666666666666, + "value": { + "__uuid__": "46e64686-1071-4db2-8f3d-4a0a00dc8e10" + } + }, + { + "frame": 1.0333333333333334, + "value": { + "__uuid__": "5a082e4d-d615-411f-880e-b03bda363cea" + } + }, + { + "frame": 1.05, + "value": { + "__uuid__": "6d582b00-b973-4397-8866-32f531d4366e" + } + }, + { + "frame": 1.0666666666666667, + "value": { + "__uuid__": "1de67f2c-e9ea-438d-8f30-b7c40159bc92" + } + }, + { + "frame": 1.0833333333333333, + "value": { + "__uuid__": "6e98330a-9709-44e1-8704-aa6430bd8236" + } + }, + { + "frame": 1.1, + "value": { + "__uuid__": "b2557433-9168-4b78-a9ac-78b33633b1d8" + } + } + ] + } + } + }, + "events": [ + { + "frame": 0, + "func": "", + "params": [] + }, + { + "frame": 0, + "func": "", + "params": [] + } + ] +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Idle1.anim.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Idle1.anim.meta new file mode 100644 index 0000000..02dc1f9 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Idle1.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "2.1.0", + "uuid": "252b321f-81f4-485c-85bd-ea44d298cb76", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist new file mode 100644 index 0000000..0e6fcb3 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist @@ -0,0 +1,9206 @@ + + + + + frames + + SoldierFireGhost_Atk1_00.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{206,927},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_01.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{495,309},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_02.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{550,206},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_03.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{605,103},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_04.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{660,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_05.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{275,824},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_06.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{330,721},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_07.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{385,618},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_08.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{440,515},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_09.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{495,370},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{721,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{495,431},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{782,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{843,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{904,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{965,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1026,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1087,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1148,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1209,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1270,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1331,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1392,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_23.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1453,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_24.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1514,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_25.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1575,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_26.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1636,0},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_27.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{660,54},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_28.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{721,54},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_29.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{782,54},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_30.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{843,54},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_31.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{904,54},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_32.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{965,54},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_33.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{1026,54},{61,54}} + textureRotated + + + SoldierFireGhost_Atk1_34.png + + aliases + + spriteOffset + {0,0} + spriteSize + {61,54} + spriteSourceSize + {61,54} + textureRect + {{206,927},{61,54}} + textureRotated + + + SoldierFireGhost_Atk2_000.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_001.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{549,436},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_002.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{275,885},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_003.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{385,679},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_004.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{331,884},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_005.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{605,164},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_006.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1009,160},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_007.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{606,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_008.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{440,576},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_009.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{441,679},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_010.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{442,790},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_011.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{383,941},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_012.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{553,492},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_013.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1065,166},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_014.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{496,602},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_015.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{601,601},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_016.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{497,658},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_017.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,658},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_018.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{603,657},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_019.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1640,157},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_020.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{497,714},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_021.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{553,714},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_022.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{606,713},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_023.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{495,767},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_024.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{548,770},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_025.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{495,823},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_026.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{551,823},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_027.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1118,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_028.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1174,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_029.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1230,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_030.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1286,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_031.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1342,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_032.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1398,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_033.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1454,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_034.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1510,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_035.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1566,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_036.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1622,213},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_037.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{436,846},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_038.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{436,902},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_039.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{489,876},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_040.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{542,879},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_041.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{490,932},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_042.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{543,932},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_043.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{654,601},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_044.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{656,657},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_045.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{659,713},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_046.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{654,427},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_047.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{658,483},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_048.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{658,539},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_049.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{661,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_050.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{717,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_051.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{773,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_052.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{829,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_053.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{885,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_054.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{941,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_055.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_056.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_057.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_058.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_059.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_060.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_061.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{659,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_062.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{712,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_063.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{659,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_064.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{712,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_065.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{765,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_066.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{765,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_067.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{818,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_068.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{818,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_069.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{871,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_070.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{871,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_071.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{924,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_072.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{924,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_073.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{712,377},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_074.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{768,377},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_075.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{601,601},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_076.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{497,658},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_077.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,658},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_078.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{603,657},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_079.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1640,157},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_080.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{497,714},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_081.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{553,714},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_082.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{606,713},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_083.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{495,767},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_084.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{548,770},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_085.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{495,823},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_086.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{551,823},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_087.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1118,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_088.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1174,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_089.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1230,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_090.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1286,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_091.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1342,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_092.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1398,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_093.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1454,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_094.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1510,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_095.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1566,210},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_096.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1622,213},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_097.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{436,846},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_098.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{436,902},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_099.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{489,876},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_100.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{542,879},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_101.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{490,932},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_102.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{543,932},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_103.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{654,601},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_104.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{656,657},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_105.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{659,713},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_106.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{654,427},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_107.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{658,483},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_108.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{658,539},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_109.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{661,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_110.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{717,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_111.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{773,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_112.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{829,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_113.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{885,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_114.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{941,212},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_115.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_116.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_117.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_118.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_119.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_120.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_121.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{659,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_122.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{712,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_123.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{659,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_124.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{712,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_125.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{765,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_126.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{765,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_127.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{818,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_128.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{818,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_129.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{871,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_130.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{871,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_131.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{924,265},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_132.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{924,321},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_133.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{712,377},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_134.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{768,377},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_135.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{601,601},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_136.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{497,658},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_137.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,658},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_138.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{603,657},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_139.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{1640,157},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_140.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{497,714},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_141.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{553,714},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_142.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{606,713},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_143.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{495,767},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_144.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{548,770},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_145.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{824,377},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_146.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{880,377},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_147.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{707,430},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_148.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{763,430},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_149.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{711,483},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_150.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{819,430},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_151.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{711,539},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_152.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{764,483},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_153.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{875,430},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_154.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{764,539},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_155.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{817,483},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_156.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{817,539},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_157.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{870,483},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_158.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{870,539},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_159.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{707,595},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_160.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{760,595},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_161.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{813,595},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_162.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{866,595},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_163.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{709,651},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_164.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{762,651},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_165.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{815,651},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_166.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{868,651},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_167.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{712,707},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_168.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{765,707},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_169.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{818,707},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_170.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{871,707},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_171.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{997,213},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_172.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{936,377},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_173.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{931,433},{53,56}} + textureRotated + + + SoldierFireGhost_Atk2_174.png + + aliases + + spriteOffset + {0,0} + spriteSize + {53,56} + spriteSourceSize + {53,56} + textureRect + {{550,267},{53,56}} + textureRotated + + + SoldierFireGhost_Atked1_00.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{330,782},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_01.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{436,958},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_02.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1053,222},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_03.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1039,372},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_04.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1077,266},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_05.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1630,316},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_06.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1630,370},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_07.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{973,486},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_08.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{973,540},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_09.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1017,486},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1017,540},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1061,479},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1061,533},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1115,423},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1662,424},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1105,479},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1105,533},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1149,477},{44,54}} + textureRotated + + + SoldierFireGhost_Atked1_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {44,54} + spriteSourceSize + {44,54} + textureRect + {{1149,531},{44,54}} + textureRotated + + + SoldierFireGhost_Atked2_00.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1667,54},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_01.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{987,433},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_02.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1076,426},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_03.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1593,475},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_04.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1593,528},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_05.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1061,587},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_06.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1114,587},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_07.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{598,879},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_08.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{712,763},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_09.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{765,763},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{818,763},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{871,763},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{919,595},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{921,648},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1061,626},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1060,665},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{924,701},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{924,754},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1114,640},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1207,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1260,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1313,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1366,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_23.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1419,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_24.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1472,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_25.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1525,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_26.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1578,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_27.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1631,793},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_28.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1207,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_29.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1260,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_30.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1313,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_31.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1366,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_32.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1419,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_33.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1472,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_34.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1525,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_35.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1578,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_36.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1631,832},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_37.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1207,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_38.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1260,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_39.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1313,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_40.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1366,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_41.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1419,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_42.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1472,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_43.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1525,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_44.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1578,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_45.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1631,871},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_46.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{604,770},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_47.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{604,823},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_48.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{878,802},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_49.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{690,855},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_50.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{743,855},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_51.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{796,855},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_52.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{849,855},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_53.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{902,860},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_54.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{690,947},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_55.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{743,947},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_56.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{796,947},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_57.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{931,899},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_58.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{849,947},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_59.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{888,946},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_60.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{955,860},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_61.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{970,899},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_62.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1058,848},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_63.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1009,909},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_64.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1109,905},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_65.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1162,903},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_66.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1298,957},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_67.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1351,957},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_68.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1404,957},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_69.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1457,957},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_70.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1510,957},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_71.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1563,957},{39,53}} + textureRotated + + + SoldierFireGhost_Atked2_72.png + + aliases + + spriteOffset + {0,0} + spriteSize + {39,53} + spriteSourceSize + {39,53} + textureRect + {{1667,54},{39,53}} + textureRotated + + + SoldierFireGhost_Dying_00.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_01.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_02.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_03.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_04.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_05.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_06.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_07.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_08.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_09.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,412},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,515},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,412},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{275,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,618},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,515},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_23.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,412},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_24.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_25.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_26.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{275,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_27.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{330,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_28.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,721},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_29.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,618},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_30.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,515},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_31.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,412},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_32.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_33.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{275,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_34.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{330,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_35.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{385,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_36.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,824},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_37.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,721},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_38.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,618},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_39.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,515},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_40.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,412},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_41.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{275,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_42.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{330,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_43.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{385,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_44.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{440,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_45.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{55,824},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_46.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{0,927},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_47.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,721},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_48.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,618},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_49.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,515},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_50.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{275,412},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_51.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{330,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_52.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{385,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_53.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{440,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_54.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{495,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_55.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{110,824},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_56.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,721},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_57.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,618},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_58.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{275,515},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_59.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{330,412},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_60.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{385,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_61.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{440,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_62.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{495,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_63.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{550,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_64.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{165,824},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_65.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{103,927},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_66.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,721},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_67.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{275,618},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_68.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{330,515},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_69.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{385,412},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_70.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{440,309},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_71.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{495,206},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_72.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{550,103},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_73.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{605,0},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_74.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{220,824},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_75.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{275,721},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_76.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{330,618},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_77.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{385,515},{55,103}} + textureRotated + + + SoldierFireGhost_Dying_78.png + + aliases + + spriteOffset + {0,0} + spriteSize + {55,103} + spriteSourceSize + {55,103} + textureRect + {{440,412},{55,103}} + textureRotated + + + SoldierFireGhost_Idle1_00.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{381,836},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_01.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1083,370},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_02.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1153,585},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_03.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{596,932},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_04.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{963,700},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_05.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1060,704},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_06.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{963,753},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_07.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1153,638},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_08.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1113,693},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_09.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1113,746},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1160,691},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1160,744},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1307,687},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1307,740},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1354,687},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1354,740},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1401,687},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1401,740},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1448,687},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1448,740},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1495,687},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1495,740},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1542,687},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_23.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1542,740},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_24.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1589,687},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_25.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1589,740},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_26.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1636,687},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_27.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1636,740},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_28.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1160,797},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_29.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1113,799},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_30.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1060,801},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_31.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1160,850},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_32.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{643,769},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_33.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{643,822},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_34.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{690,802},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_35.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{737,802},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_36.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{784,802},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_37.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{831,802},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_38.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{917,807},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_39.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{964,806},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_40.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1011,803},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_41.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{637,876},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_42.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{643,923},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_43.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{690,894},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_44.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{737,894},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_45.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{784,894},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_46.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{831,894},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_47.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{878,899},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_48.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{927,952},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_49.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{980,952},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_50.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1011,856},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_51.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1111,852},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_52.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1062,887},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_53.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1201,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_54.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1254,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_55.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1307,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_56.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1360,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_57.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1413,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_58.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1466,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_59.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1519,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_60.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1572,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_61.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1625,910},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_62.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1033,957},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_63.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1086,957},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_64.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1139,957},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_65.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1192,957},{47,53}} + textureRotated + + + SoldierFireGhost_Idle1_66.png + + aliases + + spriteOffset + {0,0} + spriteSize + {47,53} + spriteSourceSize + {47,53} + textureRect + {{1245,957},{47,53}} + textureRotated + + + SoldierFireGhost_Idle2_000.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{604,217},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_001.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{439,629},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_002.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1639,107},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_003.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{659,377},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_004.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{923,486},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_005.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{923,539},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_006.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{977,266},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_007.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{977,319},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_008.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1027,266},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_009.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1027,319},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_010.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{989,372},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_011.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1121,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_012.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1171,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_013.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1221,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_014.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1271,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_015.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1321,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_016.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1371,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_017.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1421,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_018.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1471,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_019.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1521,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_020.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1571,263},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_021.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1621,266},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_022.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1077,320},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_023.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1130,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_024.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1180,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_025.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1230,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_026.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1280,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_027.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1330,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_028.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1380,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_029.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1430,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_030.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1480,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_031.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1530,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_032.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1580,316},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_033.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1130,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_034.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1180,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_035.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1230,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_036.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1280,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_037.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1330,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_038.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1380,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_039.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1430,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_040.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1480,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_041.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1530,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_042.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1580,369},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_043.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1026,426},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_044.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1159,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_045.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1209,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_046.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1259,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_047.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1309,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_048.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1359,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_049.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1409,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_050.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1459,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_051.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1509,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_052.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1559,422},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_053.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1609,424},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_054.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1193,475},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_055.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1243,475},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_056.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1293,475},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_057.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1343,475},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_058.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1393,475},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_059.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1443,475},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_060.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1493,475},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_061.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1543,475},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_062.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1193,528},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_063.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1243,528},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_064.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1293,528},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_065.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1343,528},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_066.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1393,528},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_067.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1443,528},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_068.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1493,528},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_069.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1543,528},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_070.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1632,478},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_071.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1632,531},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_072.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1200,581},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_073.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1250,581},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_074.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1300,581},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_075.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1350,581},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_076.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1400,581},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_077.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1450,581},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_078.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1500,581},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_079.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1550,581},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_080.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1600,584},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_081.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1653,584},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_082.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{958,594},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_083.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1008,594},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_084.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{960,647},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_085.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1010,644},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_086.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1010,697},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_087.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1010,750},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_088.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1060,751},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_089.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1200,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_090.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1250,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_091.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1300,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_092.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1350,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_093.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1400,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_094.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1450,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_095.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1500,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_096.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1550,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_097.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1600,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_098.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1650,634},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_099.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1207,687},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_100.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1207,740},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_101.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1257,687},{50,53}} + textureRotated + + + SoldierFireGhost_Idle2_102.png + + aliases + + spriteOffset + {0,0} + spriteSize + {50,53} + spriteSourceSize + {50,53} + textureRect + {{1257,740},{50,53}} + textureRotated + + + SoldierFireGhost_Walking_00.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1087,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_01.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1145,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_02.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1203,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_03.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1261,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_04.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1319,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_05.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1377,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_06.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1435,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_07.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1493,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_08.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1551,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_09.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1609,54},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_10.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{659,108},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_11.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{717,108},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_12.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{775,108},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_13.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{833,108},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_14.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{891,108},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_15.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{949,108},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_16.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1007,108},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_17.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{549,320},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_18.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{549,378},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_19.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{384,732},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_20.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{329,826},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_21.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{384,784},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_22.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{384,883},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_23.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{661,160},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_24.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{719,160},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_25.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{777,160},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_26.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{835,160},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_27.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{893,160},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_28.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{951,160},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_29.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{601,323},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_30.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{601,375},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_31.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{602,427},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_32.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{442,732},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_33.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{267,938},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_34.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{325,940},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_35.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{495,492},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_36.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{606,485},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_37.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1065,108},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_38.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1117,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_39.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1175,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_40.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1233,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_41.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1291,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_42.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1349,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_43.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1407,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_44.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1465,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_45.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1523,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_46.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1581,106},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_47.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1118,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_48.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1176,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_49.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1234,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_50.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1292,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_51.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1350,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_52.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1408,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_53.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1466,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_54.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1524,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_55.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1582,158},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_56.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{496,544},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_57.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{548,548},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_58.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{606,543},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_59.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{549,600},{58,52}} + textureRotated + + + SoldierFireGhost_Walking_60.png + + aliases + + spriteOffset + {0,0} + spriteSize + {58,52} + spriteSourceSize + {58,52} + textureRect + {{1087,54},{58,52}} + textureRotated + + + + metadata + + format + 3 + pixelFormat + RGBA8888 + premultiplyAlpha + + realTextureFileName + SoldierFireGhost.png + size + {1706,1004} + smartupdate + $TexturePacker:SmartUpdate:e2b0bfa13d2aef8a80a5dbb186f24a49:c220bf728aa9d1cb54a9b31976f89896:043399c0f812c3a0a08a896b55a4dd30$ + textureFileName + SoldierFireGhost.png + + + diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist.meta new file mode 100644 index 0000000..a140599 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.plist.meta @@ -0,0 +1,13476 @@ +{ + "ver": "1.2.4", + "uuid": "145769c8-a259-42bc-8cce-6e035f493c70", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "size": { + "width": 1706, + "height": 1004 + }, + "type": "Texture Packer", + "subMetas": { + "SoldierFireGhost_Atk1_00.png": { + "ver": "1.0.4", + "uuid": "d55c2f3c-9110-4627-b8b2-0f9395f0d145", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 206, + "trimY": 927, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_01.png": { + "ver": "1.0.4", + "uuid": "1228879d-d28e-48e4-a3ce-5ceda0d1831f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 309, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_02.png": { + "ver": "1.0.4", + "uuid": "e88dd5c4-cc5d-46e0-88de-e382e2bcadd7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 206, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_03.png": { + "ver": "1.0.4", + "uuid": "df069f5c-7fc0-4731-bb7f-9d2032498e4c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 605, + "trimY": 103, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_04.png": { + "ver": "1.0.4", + "uuid": "4815763d-64e1-4b15-b795-38900861c651", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 660, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_05.png": { + "ver": "1.0.4", + "uuid": "0dca4f06-bf25-4e7f-ac3a-1687e284f5d6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 824, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_06.png": { + "ver": "1.0.4", + "uuid": "de8db3c9-affd-45ef-a536-e2d28ebc8094", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 721, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_07.png": { + "ver": "1.0.4", + "uuid": "baaafb8b-9c1a-45ea-ba80-eb8048b61b57", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 385, + "trimY": 618, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_08.png": { + "ver": "1.0.4", + "uuid": "9ffa7db6-1aec-4a1e-a8a9-118f2a6e50dc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 440, + "trimY": 515, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_09.png": { + "ver": "1.0.4", + "uuid": "f2f296ad-0e19-4b00-b061-8c9edff98d0d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 370, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_10.png": { + "ver": "1.0.4", + "uuid": "3e546607-d27f-40fa-9967-771c55a12590", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 721, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_11.png": { + "ver": "1.0.4", + "uuid": "fece0129-e8ae-45be-b963-e2b821add0d3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 431, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_12.png": { + "ver": "1.0.4", + "uuid": "f5f48bec-3d2a-49de-9416-26cc75d34e32", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 782, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_13.png": { + "ver": "1.0.4", + "uuid": "b083cfc9-a439-4600-b336-b50ca08b68c4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 843, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_14.png": { + "ver": "1.0.4", + "uuid": "d04003f5-16c1-4510-898b-9148b76eb958", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 904, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_15.png": { + "ver": "1.0.4", + "uuid": "2159f038-bffa-480c-a2bd-c305868f2fd9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 965, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_16.png": { + "ver": "1.0.4", + "uuid": "1d3de292-7dd4-4e28-b1d2-23fc38318390", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1026, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_17.png": { + "ver": "1.0.4", + "uuid": "3031ca7c-e1f7-4d14-b29e-5a7102cab245", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1087, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_18.png": { + "ver": "1.0.4", + "uuid": "987e9d14-b6fc-46c7-93ed-8914e42bfa8b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1148, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_19.png": { + "ver": "1.0.4", + "uuid": "327db66e-2136-4d52-9727-399d60715a86", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1209, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_20.png": { + "ver": "1.0.4", + "uuid": "82ab2dcd-22e9-490f-96c4-4786018c91d0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1270, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_21.png": { + "ver": "1.0.4", + "uuid": "36812959-85a6-40fb-9a38-1b4d871eba92", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1331, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_22.png": { + "ver": "1.0.4", + "uuid": "2941d74c-7b9c-43dc-a5c4-45952220d9a2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1392, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_23.png": { + "ver": "1.0.4", + "uuid": "4aed2032-25d5-42fd-983a-4473e2985a99", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1453, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_24.png": { + "ver": "1.0.4", + "uuid": "3db216c1-3362-4404-8db6-11615bfa6e64", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1514, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_25.png": { + "ver": "1.0.4", + "uuid": "2cf0cb17-cbb0-4d64-9c91-83639a363158", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1575, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_26.png": { + "ver": "1.0.4", + "uuid": "9c057e2c-1dc4-4c6c-adb7-85bf691cefb5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1636, + "trimY": 0, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_27.png": { + "ver": "1.0.4", + "uuid": "49c07a7f-2ace-4e2b-ba4c-724aad12ec5c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 660, + "trimY": 54, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_28.png": { + "ver": "1.0.4", + "uuid": "cec3c067-c958-4988-b113-2f10d7f4f5ea", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 721, + "trimY": 54, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_29.png": { + "ver": "1.0.4", + "uuid": "ad57f789-a25a-411c-b130-62a8ab16177f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 782, + "trimY": 54, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_30.png": { + "ver": "1.0.4", + "uuid": "3c2a21a5-7c85-48f3-95ff-0d7a32e5e852", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 843, + "trimY": 54, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_31.png": { + "ver": "1.0.4", + "uuid": "fe15eece-07a5-4d15-927b-af980aea7693", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 904, + "trimY": 54, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_32.png": { + "ver": "1.0.4", + "uuid": "30ac103a-0f2b-45db-9442-461479beeb0d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 965, + "trimY": 54, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_33.png": { + "ver": "1.0.4", + "uuid": "76272ec6-0721-4496-941b-5cb6a52b2c35", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1026, + "trimY": 54, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk1_34.png": { + "ver": "1.0.4", + "uuid": "7fedc57f-6998-45fc-899d-ea5edd41ab13", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 206, + "trimY": 927, + "width": 61, + "height": 54, + "rawWidth": 61, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_000.png": { + "ver": "1.0.4", + "uuid": "17faa8a9-a6ba-4dd6-8cbe-ff8dbf78bb90", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_001.png": { + "ver": "1.0.4", + "uuid": "d39f51ca-dbde-4fb4-8e23-5540e6d4fd4f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 549, + "trimY": 436, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_002.png": { + "ver": "1.0.4", + "uuid": "f527484c-b3ff-430a-a920-fa1bdeb05f9a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 885, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_003.png": { + "ver": "1.0.4", + "uuid": "c39d49ea-bace-4f2e-a915-e63c7d4d2545", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 385, + "trimY": 679, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_004.png": { + "ver": "1.0.4", + "uuid": "33297de5-a8e3-4d9f-b155-483be0f5232d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 331, + "trimY": 884, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_005.png": { + "ver": "1.0.4", + "uuid": "980e5165-ac04-4470-80f2-f7282bf02b41", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 605, + "trimY": 164, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_006.png": { + "ver": "1.0.4", + "uuid": "77399a2f-2035-4679-bd69-0b90e572f6ac", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1009, + "trimY": 160, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_007.png": { + "ver": "1.0.4", + "uuid": "e08e8956-aca7-4756-ab6b-0a03c4fa46c7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 606, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_008.png": { + "ver": "1.0.4", + "uuid": "4525c2db-7bd7-4bbb-a0e3-de444cd17f86", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 440, + "trimY": 576, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_009.png": { + "ver": "1.0.4", + "uuid": "d759c6fe-bca9-4e42-ad27-18e625df7c85", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 441, + "trimY": 679, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_010.png": { + "ver": "1.0.4", + "uuid": "2d4a1adc-5715-472f-818e-5a22ccc454d1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 442, + "trimY": 790, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_011.png": { + "ver": "1.0.4", + "uuid": "b9c963e5-5ecb-4632-b77a-dc2d85ff610b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 383, + "trimY": 941, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_012.png": { + "ver": "1.0.4", + "uuid": "891e1b7d-e2e3-419c-8528-f9df6644abe5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 553, + "trimY": 492, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_013.png": { + "ver": "1.0.4", + "uuid": "f913cf30-bb89-4c6c-818d-ddabe3f703db", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1065, + "trimY": 166, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_014.png": { + "ver": "1.0.4", + "uuid": "4037acd9-52aa-498a-9216-65b46d967653", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 496, + "trimY": 602, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_015.png": { + "ver": "1.0.4", + "uuid": "cf2aeb3f-f83b-47c2-ada8-368fc739c12e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 601, + "trimY": 601, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_016.png": { + "ver": "1.0.4", + "uuid": "b1396b65-5d17-48e8-9a6f-8f0c5254ea3f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 497, + "trimY": 658, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_017.png": { + "ver": "1.0.4", + "uuid": "6879828e-a695-4ba5-bd9a-5db039f664b9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 658, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_018.png": { + "ver": "1.0.4", + "uuid": "11930a28-f22d-4e8a-b924-a36ce216beda", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 603, + "trimY": 657, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_019.png": { + "ver": "1.0.4", + "uuid": "f59bf930-34a7-4d28-932a-c3842e6b3e46", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1640, + "trimY": 157, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_020.png": { + "ver": "1.0.4", + "uuid": "e3d7f9f6-7f38-4b5d-8929-a38ab9b0a4ae", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 497, + "trimY": 714, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_021.png": { + "ver": "1.0.4", + "uuid": "adf48877-749c-4265-bfe5-37836ab23acc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 553, + "trimY": 714, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_022.png": { + "ver": "1.0.4", + "uuid": "8031f6c5-9f61-4e8c-9c82-cc07e98c5cc6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 606, + "trimY": 713, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_023.png": { + "ver": "1.0.4", + "uuid": "2d359ba6-428a-4972-ac97-57682eb97862", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 767, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_024.png": { + "ver": "1.0.4", + "uuid": "c3af0dd2-0902-431f-8dcf-09814b4fedf4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 548, + "trimY": 770, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_025.png": { + "ver": "1.0.4", + "uuid": "44d77658-4e19-4771-a746-83d120ab4050", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 823, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_026.png": { + "ver": "1.0.4", + "uuid": "a44015a1-c6b1-48de-b284-4a62cc1d6e00", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 551, + "trimY": 823, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_027.png": { + "ver": "1.0.4", + "uuid": "d18aee8b-65e5-4c92-b929-d9d226d17d20", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1118, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_028.png": { + "ver": "1.0.4", + "uuid": "75840798-5105-484e-b115-00be04c6f5fb", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1174, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_029.png": { + "ver": "1.0.4", + "uuid": "43b1b61f-bfb8-448f-8f09-40b3d1c4412c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1230, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_030.png": { + "ver": "1.0.4", + "uuid": "3a6f5b6a-5802-4967-b889-c8f165b3a0c3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1286, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_031.png": { + "ver": "1.0.4", + "uuid": "e10aa072-c4a7-4f66-84f6-fdcbd919b5b5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1342, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_032.png": { + "ver": "1.0.4", + "uuid": "c7190256-0acc-486b-b8a1-4e024ab733f9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1398, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_033.png": { + "ver": "1.0.4", + "uuid": "f60e9603-b738-4869-b8cb-0c864cfaa0e0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1454, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_034.png": { + "ver": "1.0.4", + "uuid": "69aa605f-9ed3-474f-964e-326060e1e86e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1510, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_035.png": { + "ver": "1.0.4", + "uuid": "949a983c-89ea-43d3-a254-ec12c4de9ab5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1566, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_036.png": { + "ver": "1.0.4", + "uuid": "24a000c4-0960-4460-92db-9ce96f0d9cb6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1622, + "trimY": 213, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_037.png": { + "ver": "1.0.4", + "uuid": "6804f91c-830f-4864-b9f6-cab43259b12a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 436, + "trimY": 846, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_038.png": { + "ver": "1.0.4", + "uuid": "93f77c8b-ca68-450e-9398-6a9b5092d0a6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 436, + "trimY": 902, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_039.png": { + "ver": "1.0.4", + "uuid": "a1984cf8-b1b5-436e-9357-6c4c95948e47", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 489, + "trimY": 876, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_040.png": { + "ver": "1.0.4", + "uuid": "29d037ab-6257-4afb-bfa0-8a2e23bce0f7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 542, + "trimY": 879, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_041.png": { + "ver": "1.0.4", + "uuid": "c34ed877-15c5-4046-a309-51e3f5598062", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 490, + "trimY": 932, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_042.png": { + "ver": "1.0.4", + "uuid": "c07bbc1f-ec5e-4f4d-9afc-dccfc0865206", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 543, + "trimY": 932, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_043.png": { + "ver": "1.0.4", + "uuid": "8437da3f-1258-4952-9eef-dbb8d395a113", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 654, + "trimY": 601, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_044.png": { + "ver": "1.0.4", + "uuid": "ac9c8bcf-0838-440a-a80d-42c3c3b0a409", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 656, + "trimY": 657, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_045.png": { + "ver": "1.0.4", + "uuid": "8779a91a-0be2-414d-8c0c-bf85e8339e70", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 659, + "trimY": 713, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_046.png": { + "ver": "1.0.4", + "uuid": "40bca14b-5f90-409c-9110-a0744bfafa08", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 654, + "trimY": 427, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_047.png": { + "ver": "1.0.4", + "uuid": "238c96c8-9a7d-4426-89b3-ce5c5a78bb11", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 658, + "trimY": 483, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_048.png": { + "ver": "1.0.4", + "uuid": "728320da-7410-4e00-a3bd-7583c62ddbef", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 658, + "trimY": 539, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_049.png": { + "ver": "1.0.4", + "uuid": "0dddf18b-7622-4f92-9920-c6839378bdfc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 661, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_050.png": { + "ver": "1.0.4", + "uuid": "959a2c07-c66b-47eb-a1d1-5a3cbdee09d7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 717, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_051.png": { + "ver": "1.0.4", + "uuid": "bf3b7152-b379-4509-8c60-382fad189a8f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 773, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_052.png": { + "ver": "1.0.4", + "uuid": "8109909a-b35d-486d-8bad-87b606881fd1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 829, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_053.png": { + "ver": "1.0.4", + "uuid": "2dd72ef5-a1f4-4247-8f99-2d57fa40ea87", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 885, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_054.png": { + "ver": "1.0.4", + "uuid": "b531adf8-1d99-47d1-a83b-85e90102852e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 941, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_055.png": { + "ver": "1.0.4", + "uuid": "2956791b-539f-4555-9d3c-811311e7616a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_056.png": { + "ver": "1.0.4", + "uuid": "cb943256-ad03-474a-b18f-f0f8bdae51ae", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_057.png": { + "ver": "1.0.4", + "uuid": "2f18b6a9-c997-425f-8a00-74c8eeea7bb9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_058.png": { + "ver": "1.0.4", + "uuid": "363a0c85-c674-4cd4-a873-4fde54142d0c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_059.png": { + "ver": "1.0.4", + "uuid": "65e92d47-d8f6-40db-bdd0-eb07aedca2ee", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_060.png": { + "ver": "1.0.4", + "uuid": "cc9533c1-a022-43b1-b4bf-efb2d8ead0a2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_061.png": { + "ver": "1.0.4", + "uuid": "56565465-18ce-47e7-a00d-7394dd4bf99d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 659, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_062.png": { + "ver": "1.0.4", + "uuid": "e2d94ae4-b7fe-42cb-90fb-f92f076c89c2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_063.png": { + "ver": "1.0.4", + "uuid": "1201a299-1e81-4d69-a55a-a2b903fe1ff2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 659, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_064.png": { + "ver": "1.0.4", + "uuid": "2e341745-6e14-4b89-a489-90d21d481cd1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_065.png": { + "ver": "1.0.4", + "uuid": "09180da7-5836-4da2-b5d3-fedde2fc9afd", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 765, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_066.png": { + "ver": "1.0.4", + "uuid": "e593d41c-4fa1-4a46-97af-5a23a97130ae", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 765, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_067.png": { + "ver": "1.0.4", + "uuid": "98a43419-6d5b-4741-8f0c-1317aadf86eb", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 818, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_068.png": { + "ver": "1.0.4", + "uuid": "662ac237-cd1d-4b2b-a174-d32925e7228a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 818, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_069.png": { + "ver": "1.0.4", + "uuid": "020d6c7f-0279-41a8-8d5e-013340caaaaa", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 871, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_070.png": { + "ver": "1.0.4", + "uuid": "962f69d1-d113-4a01-b152-0c16d66dfd96", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 871, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_071.png": { + "ver": "1.0.4", + "uuid": "7026b3fa-29c6-4f3d-918a-1adf7abbb991", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 924, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_072.png": { + "ver": "1.0.4", + "uuid": "6804f888-3c17-4ded-8316-6503d3e91d1a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 924, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_073.png": { + "ver": "1.0.4", + "uuid": "16304ac5-0d7e-448b-a164-4a697aabbe36", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 377, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_074.png": { + "ver": "1.0.4", + "uuid": "c4d8a5ea-6469-4420-bf60-9b5b9fff016c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 768, + "trimY": 377, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_075.png": { + "ver": "1.0.4", + "uuid": "c38e47cb-a905-42d9-8e81-c29b622c8972", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 601, + "trimY": 601, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_076.png": { + "ver": "1.0.4", + "uuid": "653decb4-3ac7-4289-9d34-730f7b2d9c44", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 497, + "trimY": 658, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_077.png": { + "ver": "1.0.4", + "uuid": "a74bc59f-a5b3-4627-af85-912d974a21a1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 658, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_078.png": { + "ver": "1.0.4", + "uuid": "81103ea3-b28f-4e71-95c8-972eca51b35c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 603, + "trimY": 657, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_079.png": { + "ver": "1.0.4", + "uuid": "b81eef2a-2739-48a3-8695-4f4025a1f438", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1640, + "trimY": 157, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_080.png": { + "ver": "1.0.4", + "uuid": "c0c879ac-ecb2-4b91-959f-5f09fd629207", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 497, + "trimY": 714, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_081.png": { + "ver": "1.0.4", + "uuid": "6e82fd6d-6f95-4e52-9012-c08f7f82e269", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 553, + "trimY": 714, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_082.png": { + "ver": "1.0.4", + "uuid": "d8675712-6be4-43d0-8e23-a8aedcb3a49b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 606, + "trimY": 713, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_083.png": { + "ver": "1.0.4", + "uuid": "fe79323f-da84-425a-8d5f-bf7465f1e4a2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 767, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_084.png": { + "ver": "1.0.4", + "uuid": "b2eafd63-e140-4422-be0c-e9fc3c4f9370", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 548, + "trimY": 770, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_085.png": { + "ver": "1.0.4", + "uuid": "b898f4a1-3e6f-4f6b-9478-0c7ecc4391a1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 823, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_086.png": { + "ver": "1.0.4", + "uuid": "6baf8118-f974-4698-976f-b69bc681b9aa", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 551, + "trimY": 823, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_087.png": { + "ver": "1.0.4", + "uuid": "c4fa0e5f-84a4-4047-9a7a-1a98b9f42764", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1118, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_088.png": { + "ver": "1.0.4", + "uuid": "69b2fdf1-ca4a-4373-ae48-2bc0d8147c31", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1174, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_089.png": { + "ver": "1.0.4", + "uuid": "eb3d3358-a4b0-49a2-90f8-6e91c47e95f6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1230, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_090.png": { + "ver": "1.0.4", + "uuid": "3d06fadb-637f-45a7-88e6-890eb9986dca", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1286, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_091.png": { + "ver": "1.0.4", + "uuid": "03d2596d-bc20-44b1-b080-c580b556f71b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1342, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_092.png": { + "ver": "1.0.4", + "uuid": "f129dc46-386c-4a12-abd7-da817b326d78", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1398, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_093.png": { + "ver": "1.0.4", + "uuid": "63047c54-0de0-4ae3-944e-24b2920f0e67", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1454, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_094.png": { + "ver": "1.0.4", + "uuid": "354e2a19-e7be-4b87-a083-5adac5d36807", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1510, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_095.png": { + "ver": "1.0.4", + "uuid": "ff2699d9-0100-41ac-9f0b-722ab290c4df", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1566, + "trimY": 210, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_096.png": { + "ver": "1.0.4", + "uuid": "67ec0adf-2a83-4520-9f80-4a0a01cb8ab4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1622, + "trimY": 213, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_097.png": { + "ver": "1.0.4", + "uuid": "0b3cd6f3-2a96-45ba-b525-05949dd667d7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 436, + "trimY": 846, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_098.png": { + "ver": "1.0.4", + "uuid": "3300ae47-27e2-4d6e-8f16-0b1f96a23787", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 436, + "trimY": 902, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_099.png": { + "ver": "1.0.4", + "uuid": "00f888b0-ba41-478e-9163-7882b4869a9e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 489, + "trimY": 876, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_100.png": { + "ver": "1.0.4", + "uuid": "c032fc87-9757-438c-820e-84fcb31215d0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 542, + "trimY": 879, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_101.png": { + "ver": "1.0.4", + "uuid": "ed277ef7-6302-42f2-a362-2c288996463f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 490, + "trimY": 932, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_102.png": { + "ver": "1.0.4", + "uuid": "f71e1a43-aaa9-4882-a9b8-aa5dad6e06e3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 543, + "trimY": 932, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_103.png": { + "ver": "1.0.4", + "uuid": "ebd35802-6a41-4c59-96dc-83b0ecb781dd", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 654, + "trimY": 601, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_104.png": { + "ver": "1.0.4", + "uuid": "5a85920f-6697-4b51-b4d9-e81767eff1a6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 656, + "trimY": 657, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_105.png": { + "ver": "1.0.4", + "uuid": "525840f6-c67d-46a2-bc65-e5ab81b4e193", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 659, + "trimY": 713, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_106.png": { + "ver": "1.0.4", + "uuid": "7d30c689-edf2-4210-b169-8cc08ffd0055", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 654, + "trimY": 427, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_107.png": { + "ver": "1.0.4", + "uuid": "5fe9ea7c-dd7f-4903-be4b-946686f851a1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 658, + "trimY": 483, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_108.png": { + "ver": "1.0.4", + "uuid": "ce6b55b0-c75c-4968-9b81-8df22db8b75e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 658, + "trimY": 539, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_109.png": { + "ver": "1.0.4", + "uuid": "cc05e33d-7108-4c05-8e03-67a5f4fca434", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 661, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_110.png": { + "ver": "1.0.4", + "uuid": "caf8767c-e83f-4c4f-8f72-9e7f3c13a79a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 717, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_111.png": { + "ver": "1.0.4", + "uuid": "649464a5-65d3-45dd-9fc2-6578acedfe4e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 773, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_112.png": { + "ver": "1.0.4", + "uuid": "6470be52-867f-4b0d-91e1-df8d346512bf", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 829, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_113.png": { + "ver": "1.0.4", + "uuid": "80ea0b83-8e41-40d4-a4d8-4b826f33b1af", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 885, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_114.png": { + "ver": "1.0.4", + "uuid": "ef5c437e-5a61-4b5e-9663-a02bdd90a5e0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 941, + "trimY": 212, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_115.png": { + "ver": "1.0.4", + "uuid": "8c0e2a99-f1e9-4350-873f-7c6370e66653", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_116.png": { + "ver": "1.0.4", + "uuid": "79e24f13-d6e4-4e53-857d-bea77fd696bd", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_117.png": { + "ver": "1.0.4", + "uuid": "ad995870-7b7b-4ac1-bf81-84b670e3b8d0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_118.png": { + "ver": "1.0.4", + "uuid": "1da85fe3-93c9-4843-8b2b-7a7421dd6247", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_119.png": { + "ver": "1.0.4", + "uuid": "0c7276c3-a621-4003-bd6d-67558ad48727", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_120.png": { + "ver": "1.0.4", + "uuid": "44d6fad6-3079-415b-8fc1-9059b70b785f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_121.png": { + "ver": "1.0.4", + "uuid": "991b3e38-c437-4e52-a7ac-d305eeada22c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 659, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_122.png": { + "ver": "1.0.4", + "uuid": "8394826d-fefb-4a3d-be01-adddc6b8aa7d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_123.png": { + "ver": "1.0.4", + "uuid": "248bcdf1-a271-4e9f-9d7b-9f39a210b5c2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 659, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_124.png": { + "ver": "1.0.4", + "uuid": "a46c8ee5-2fac-412e-8e85-3d8c4f2d41fa", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_125.png": { + "ver": "1.0.4", + "uuid": "16c25261-26ca-43e6-8f35-2d2a4f109ebd", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 765, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_126.png": { + "ver": "1.0.4", + "uuid": "4135a871-d9e4-409c-97d7-1841f05ea949", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 765, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_127.png": { + "ver": "1.0.4", + "uuid": "eca0a7dd-904c-4ab7-ad6e-3d4c88c8bb11", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 818, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_128.png": { + "ver": "1.0.4", + "uuid": "33d548b3-571b-42bb-8f34-8b0d8a27addc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 818, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_129.png": { + "ver": "1.0.4", + "uuid": "e803cdd8-5d2b-4938-b7b9-264eace2b60c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 871, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_130.png": { + "ver": "1.0.4", + "uuid": "c26fc1b2-3c38-42d1-bf18-9ac54c948a85", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 871, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_131.png": { + "ver": "1.0.4", + "uuid": "a4b053c5-69ef-43d7-96bd-b15b1f330f54", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 924, + "trimY": 265, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_132.png": { + "ver": "1.0.4", + "uuid": "3b3570e1-95d5-4039-b7c9-022fa243239d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 924, + "trimY": 321, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_133.png": { + "ver": "1.0.4", + "uuid": "9c8f31c4-a203-4546-9955-04c4dc515a96", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 377, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_134.png": { + "ver": "1.0.4", + "uuid": "2ae1ffdd-cc05-4ac6-96a1-aafcf44f6a4e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 768, + "trimY": 377, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_135.png": { + "ver": "1.0.4", + "uuid": "13985b02-095f-4fac-b708-18725b609bd3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 601, + "trimY": 601, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_136.png": { + "ver": "1.0.4", + "uuid": "0eb6347c-8e7e-466c-94d8-3e7edbd3af53", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 497, + "trimY": 658, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_137.png": { + "ver": "1.0.4", + "uuid": "02b205c4-c02a-4e0d-9dd0-5634e766866f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 658, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_138.png": { + "ver": "1.0.4", + "uuid": "c59c34c8-8d85-48ba-8fa3-c5f6a0f12aa0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 603, + "trimY": 657, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_139.png": { + "ver": "1.0.4", + "uuid": "fbbd41a4-bb92-4727-afd6-bf6f9ede1d34", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1640, + "trimY": 157, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_140.png": { + "ver": "1.0.4", + "uuid": "695cc877-af14-413e-916f-c0a36a7f3ac6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 497, + "trimY": 714, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_141.png": { + "ver": "1.0.4", + "uuid": "149438e2-51bd-473f-a5fd-f9806e66341b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 553, + "trimY": 714, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_142.png": { + "ver": "1.0.4", + "uuid": "f29d3f5c-4c09-4fc5-8fe3-a689b98da298", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 606, + "trimY": 713, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_143.png": { + "ver": "1.0.4", + "uuid": "cdff77ff-8c93-4b35-8e6a-0d94d224b0b6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 767, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_144.png": { + "ver": "1.0.4", + "uuid": "d333b6e7-806b-43a0-983e-b06e8217bbe8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 548, + "trimY": 770, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_145.png": { + "ver": "1.0.4", + "uuid": "28582b2f-6d45-4acf-a86c-d37ac08bdc65", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 824, + "trimY": 377, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_146.png": { + "ver": "1.0.4", + "uuid": "5326a1d4-941f-46bb-abff-b0265412839e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 880, + "trimY": 377, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_147.png": { + "ver": "1.0.4", + "uuid": "9058092a-4226-4d90-bcdc-149fa9a61552", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 707, + "trimY": 430, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_148.png": { + "ver": "1.0.4", + "uuid": "d1750054-1fc0-4104-a1ef-8b380f5d6bcf", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 763, + "trimY": 430, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_149.png": { + "ver": "1.0.4", + "uuid": "cdb75214-74f3-4332-8602-389b6777906a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 711, + "trimY": 483, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_150.png": { + "ver": "1.0.4", + "uuid": "fc3448dc-9f3c-4ad8-bb50-bed750504604", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 819, + "trimY": 430, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_151.png": { + "ver": "1.0.4", + "uuid": "d230fbf4-9fb2-4f1e-bd53-d921bb262bcb", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 711, + "trimY": 539, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_152.png": { + "ver": "1.0.4", + "uuid": "e0ae8f5c-0c41-4279-bc4a-dd0ded0251e5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 764, + "trimY": 483, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_153.png": { + "ver": "1.0.4", + "uuid": "4ba4cee1-7c22-4859-b319-acb97463181d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 875, + "trimY": 430, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_154.png": { + "ver": "1.0.4", + "uuid": "4ae98f6b-012e-4daa-ac4d-f12b4fc688f0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 764, + "trimY": 539, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_155.png": { + "ver": "1.0.4", + "uuid": "23e3928d-1ade-4467-be50-67d710d8dfa4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 483, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_156.png": { + "ver": "1.0.4", + "uuid": "40cf66f7-4b14-46b3-ae91-263cb1a20d2a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 817, + "trimY": 539, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_157.png": { + "ver": "1.0.4", + "uuid": "75b99f65-deb7-49c2-8f3b-82b2057d136d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 870, + "trimY": 483, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_158.png": { + "ver": "1.0.4", + "uuid": "5d78a726-782a-43f0-b32f-de795a417762", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 870, + "trimY": 539, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_159.png": { + "ver": "1.0.4", + "uuid": "a1009de0-2193-48ba-949e-f90fa720ec24", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 707, + "trimY": 595, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_160.png": { + "ver": "1.0.4", + "uuid": "c7b65647-55f4-4704-bd6b-1f09efbba42a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 760, + "trimY": 595, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_161.png": { + "ver": "1.0.4", + "uuid": "fd069056-4e48-47d5-b0a7-fd73f6856013", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 813, + "trimY": 595, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_162.png": { + "ver": "1.0.4", + "uuid": "6b1f0ca9-fe99-4492-8a1b-c37fdb5ce8ea", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 866, + "trimY": 595, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_163.png": { + "ver": "1.0.4", + "uuid": "b1555440-763c-41e9-9bf9-97aa72ebfca3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 709, + "trimY": 651, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_164.png": { + "ver": "1.0.4", + "uuid": "6cf7b888-65ce-4098-b31c-23222a98a4bf", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 762, + "trimY": 651, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_165.png": { + "ver": "1.0.4", + "uuid": "461f76c1-445d-4886-88f6-194979697830", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 815, + "trimY": 651, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_166.png": { + "ver": "1.0.4", + "uuid": "76db5390-0436-4bc2-91a9-a7189e74ea10", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 868, + "trimY": 651, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_167.png": { + "ver": "1.0.4", + "uuid": "6a96c333-8027-47e7-b30c-27d74edba581", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 707, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_168.png": { + "ver": "1.0.4", + "uuid": "fbce83e2-cd62-4d44-b672-6f7f8d0dde99", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 765, + "trimY": 707, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_169.png": { + "ver": "1.0.4", + "uuid": "a38bb4f4-b07b-4302-bae8-91bfd353bbd2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 818, + "trimY": 707, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_170.png": { + "ver": "1.0.4", + "uuid": "4455e17c-0fe5-4a5c-be2e-25f1c285f635", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 871, + "trimY": 707, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_171.png": { + "ver": "1.0.4", + "uuid": "d267ec66-7d30-47b0-a531-0c47e5f09bbc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 997, + "trimY": 213, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_172.png": { + "ver": "1.0.4", + "uuid": "ce085359-ace4-43e5-8713-03a80dba533b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 936, + "trimY": 377, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_173.png": { + "ver": "1.0.4", + "uuid": "66ac9f92-ef29-4e49-ba10-bdb9735176fe", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 931, + "trimY": 433, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atk2_174.png": { + "ver": "1.0.4", + "uuid": "63dcc2ba-2226-4c6f-b77b-6f9c0deece96", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 267, + "width": 53, + "height": 56, + "rawWidth": 53, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_00.png": { + "ver": "1.0.4", + "uuid": "39aaeff6-3116-4e12-8ec4-9362a8a2fea2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 782, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_01.png": { + "ver": "1.0.4", + "uuid": "fb4e42e6-0fae-48d4-a600-217e01d43e57", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 436, + "trimY": 958, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_02.png": { + "ver": "1.0.4", + "uuid": "2af606d7-4b3d-4355-95d1-a3ab673d2a2e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1053, + "trimY": 222, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_03.png": { + "ver": "1.0.4", + "uuid": "be18e65b-346c-4efb-84cb-7f317fcaf8ac", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1039, + "trimY": 372, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_04.png": { + "ver": "1.0.4", + "uuid": "d269af72-8b89-420c-ba9e-6892cda06e80", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1077, + "trimY": 266, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_05.png": { + "ver": "1.0.4", + "uuid": "30539c9d-6dbb-4409-8562-6c24b12010c2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1630, + "trimY": 316, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_06.png": { + "ver": "1.0.4", + "uuid": "96b655f9-9a90-4cb1-86ab-0be881ad8983", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1630, + "trimY": 370, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_07.png": { + "ver": "1.0.4", + "uuid": "a86f8107-3d8d-426e-9a17-c856c1ab292a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 973, + "trimY": 486, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_08.png": { + "ver": "1.0.4", + "uuid": "d7f99f14-9257-426a-9e90-a948e7ca8d23", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 973, + "trimY": 540, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_09.png": { + "ver": "1.0.4", + "uuid": "809dcbcf-9edd-4b8b-8bc8-42394ce0a9c2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1017, + "trimY": 486, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_10.png": { + "ver": "1.0.4", + "uuid": "f3e74927-2eea-4306-ba0a-c89972ca88f1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1017, + "trimY": 540, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_11.png": { + "ver": "1.0.4", + "uuid": "af7a23f6-9b5c-4fe8-aa74-741f18500866", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1061, + "trimY": 479, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_12.png": { + "ver": "1.0.4", + "uuid": "4cc6ecdb-3741-4a2e-87a0-a93739a38d37", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1061, + "trimY": 533, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_13.png": { + "ver": "1.0.4", + "uuid": "f809b6d3-6f5b-4cf4-b148-5cf7fdf407a5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1115, + "trimY": 423, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_14.png": { + "ver": "1.0.4", + "uuid": "b1c9e526-fe26-42a8-9257-7e5549847273", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1662, + "trimY": 424, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_15.png": { + "ver": "1.0.4", + "uuid": "db62c862-7553-4f99-b758-8c4a4aec438a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1105, + "trimY": 479, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_16.png": { + "ver": "1.0.4", + "uuid": "55f68905-bff7-48ea-b497-5077f49b2aca", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1105, + "trimY": 533, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_17.png": { + "ver": "1.0.4", + "uuid": "b01f45f9-c394-4706-aae1-d1d26a84f48a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1149, + "trimY": 477, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked1_18.png": { + "ver": "1.0.4", + "uuid": "6fd7cfcb-95b2-4197-a065-6bc48365f855", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1149, + "trimY": 531, + "width": 44, + "height": 54, + "rawWidth": 44, + "rawHeight": 54, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_00.png": { + "ver": "1.0.4", + "uuid": "3abd8983-06e6-48d6-8e1d-b59a0546da43", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1667, + "trimY": 54, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_01.png": { + "ver": "1.0.4", + "uuid": "c1d8b798-7cf4-4383-a940-9f68d5a4bbe8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 987, + "trimY": 433, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_02.png": { + "ver": "1.0.4", + "uuid": "65b93e16-f8e9-44d3-8e30-94e3200b7787", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1076, + "trimY": 426, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_03.png": { + "ver": "1.0.4", + "uuid": "f682b093-d790-4606-b69f-11dcddd17ba1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1593, + "trimY": 475, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_04.png": { + "ver": "1.0.4", + "uuid": "525d14ad-7bdb-43ae-bd30-c3dc2d1d6444", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1593, + "trimY": 528, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_05.png": { + "ver": "1.0.4", + "uuid": "6b4b5887-c4b0-40a3-a3af-9330fd036f4e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1061, + "trimY": 587, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_06.png": { + "ver": "1.0.4", + "uuid": "334e3fb6-e394-47a4-be42-7a3a99d512e0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1114, + "trimY": 587, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_07.png": { + "ver": "1.0.4", + "uuid": "15ac6ff2-33a4-4040-bcb5-40749fd3dec8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 598, + "trimY": 879, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_08.png": { + "ver": "1.0.4", + "uuid": "ca73c14a-17ba-4917-90b7-50c6b467d76d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 712, + "trimY": 763, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_09.png": { + "ver": "1.0.4", + "uuid": "2b3c32af-455e-429f-9021-f3c67d61dd43", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 765, + "trimY": 763, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_10.png": { + "ver": "1.0.4", + "uuid": "7e3505db-ca17-4b29-bcde-3db26ecb177c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 818, + "trimY": 763, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_11.png": { + "ver": "1.0.4", + "uuid": "a8a2c50b-cd93-4e7f-91db-504c0d926906", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 871, + "trimY": 763, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_12.png": { + "ver": "1.0.4", + "uuid": "692f3dbf-46d0-4d46-b6ee-66508b6fe037", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 919, + "trimY": 595, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_13.png": { + "ver": "1.0.4", + "uuid": "206fd317-018c-459e-8ea6-871033f79e00", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 921, + "trimY": 648, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_14.png": { + "ver": "1.0.4", + "uuid": "6f1b1bb3-812f-4835-b268-979889d15ad0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1061, + "trimY": 626, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_15.png": { + "ver": "1.0.4", + "uuid": "c79ed790-fb1a-44dc-b32a-219131d66c26", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1060, + "trimY": 665, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_16.png": { + "ver": "1.0.4", + "uuid": "be9502c9-6176-4faf-80ae-76d8e703314e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 924, + "trimY": 701, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_17.png": { + "ver": "1.0.4", + "uuid": "425ab96f-ea1d-49b9-a21e-2b025fe46f70", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 924, + "trimY": 754, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_18.png": { + "ver": "1.0.4", + "uuid": "3c5b0752-c6e0-4dc8-a0fb-3646d1be0b44", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1114, + "trimY": 640, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_19.png": { + "ver": "1.0.4", + "uuid": "2770435d-1232-4c20-9e7a-d56367fa587c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1207, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_20.png": { + "ver": "1.0.4", + "uuid": "bd94b86f-d862-4322-8470-1d8752b68fe3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1260, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_21.png": { + "ver": "1.0.4", + "uuid": "a7bf5d8e-4e13-4b72-839d-45c6e07d599a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1313, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_22.png": { + "ver": "1.0.4", + "uuid": "b19f29a4-9944-47ce-ba4e-a2694565232a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1366, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_23.png": { + "ver": "1.0.4", + "uuid": "06b03357-2948-4c10-bb86-68b652f84ed1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1419, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_24.png": { + "ver": "1.0.4", + "uuid": "cb1acbb7-21b5-4a36-8dca-bfb88107a3da", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1472, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_25.png": { + "ver": "1.0.4", + "uuid": "9ab8a8f3-212c-4ebd-9e0e-7ae4586ad4c2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1525, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_26.png": { + "ver": "1.0.4", + "uuid": "c6d8e46a-c6a2-4c6e-b41a-1680f414e4bc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1578, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_27.png": { + "ver": "1.0.4", + "uuid": "7aea44ea-d8d5-43f5-be83-950a42079606", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1631, + "trimY": 793, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_28.png": { + "ver": "1.0.4", + "uuid": "733311b9-3aa0-4956-8de5-321b0b2dec5b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1207, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_29.png": { + "ver": "1.0.4", + "uuid": "8a7ac5c3-a237-4c10-8044-c20816869f8b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1260, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_30.png": { + "ver": "1.0.4", + "uuid": "281498e6-74ce-48e3-b50f-0549dfaf9a95", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1313, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_31.png": { + "ver": "1.0.4", + "uuid": "685aab02-2aa7-4e5f-a7d7-98983093ae9d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1366, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_32.png": { + "ver": "1.0.4", + "uuid": "f74157bc-8cf6-47b1-9870-311b918ab61e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1419, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_33.png": { + "ver": "1.0.4", + "uuid": "fdc55934-db4e-48e7-8621-13178dd1f3a4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1472, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_34.png": { + "ver": "1.0.4", + "uuid": "fcd32b51-7aab-463b-bf1b-5048d7a0466a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1525, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_35.png": { + "ver": "1.0.4", + "uuid": "28071f19-068c-44a4-af09-8492cff46c71", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1578, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_36.png": { + "ver": "1.0.4", + "uuid": "247a2ae8-c84b-4102-a5cf-f25f595f068c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1631, + "trimY": 832, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_37.png": { + "ver": "1.0.4", + "uuid": "ac890f29-f96e-4d64-bdfa-102491766b8e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1207, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_38.png": { + "ver": "1.0.4", + "uuid": "290fc310-1c53-46ef-bca0-deb2b848759b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1260, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_39.png": { + "ver": "1.0.4", + "uuid": "555c05d6-8e7c-4a22-9905-a28a4c025fe7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1313, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_40.png": { + "ver": "1.0.4", + "uuid": "a7119f04-f461-448c-aa3c-64965956c5bf", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1366, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_41.png": { + "ver": "1.0.4", + "uuid": "e97b8c35-ae66-49b8-8ef5-682702a617e2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1419, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_42.png": { + "ver": "1.0.4", + "uuid": "532faacc-12d4-4317-a38a-996233455a2f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1472, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_43.png": { + "ver": "1.0.4", + "uuid": "cf3e8e35-8f5e-4944-b212-ff7cf4044722", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1525, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_44.png": { + "ver": "1.0.4", + "uuid": "8614278c-f833-488f-a766-aecff03334e4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1578, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_45.png": { + "ver": "1.0.4", + "uuid": "6f9bc435-347c-40fd-9094-acae8cf22da9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1631, + "trimY": 871, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_46.png": { + "ver": "1.0.4", + "uuid": "bc61dec4-7053-49c2-b153-0a49bfd61672", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 604, + "trimY": 770, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_47.png": { + "ver": "1.0.4", + "uuid": "7449c6f3-a3ac-44ca-9b72-de033f67dd41", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 604, + "trimY": 823, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_48.png": { + "ver": "1.0.4", + "uuid": "ccc5e74e-b410-426c-81f4-faf8293728ad", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 878, + "trimY": 802, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_49.png": { + "ver": "1.0.4", + "uuid": "e61d698d-6868-4659-8777-247282b6ecba", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 690, + "trimY": 855, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_50.png": { + "ver": "1.0.4", + "uuid": "83eb28f2-5615-4469-b95b-ead673dd8200", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 743, + "trimY": 855, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_51.png": { + "ver": "1.0.4", + "uuid": "6dbcf7f4-4010-4be0-8853-c464e662e3ab", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 796, + "trimY": 855, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_52.png": { + "ver": "1.0.4", + "uuid": "3d006468-c171-4d37-a928-7fe94c24a976", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 849, + "trimY": 855, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_53.png": { + "ver": "1.0.4", + "uuid": "ea1074b6-2699-4626-b5d8-33367a04958f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 902, + "trimY": 860, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_54.png": { + "ver": "1.0.4", + "uuid": "ef455161-2b56-46cd-857a-b49add5de792", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 690, + "trimY": 947, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_55.png": { + "ver": "1.0.4", + "uuid": "ff0c15ef-63f4-4beb-91e0-612672c02e37", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 743, + "trimY": 947, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_56.png": { + "ver": "1.0.4", + "uuid": "0c396364-20c2-48ca-8f6a-625075cc0804", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 796, + "trimY": 947, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_57.png": { + "ver": "1.0.4", + "uuid": "d22aff59-24f0-49c9-a201-399deeb2b6d5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 931, + "trimY": 899, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_58.png": { + "ver": "1.0.4", + "uuid": "fb2c5fa9-614c-47a7-ad7b-e71e0e3e82a0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 849, + "trimY": 947, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_59.png": { + "ver": "1.0.4", + "uuid": "26faee06-db5c-4b97-ace3-2be42a066b95", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 888, + "trimY": 946, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_60.png": { + "ver": "1.0.4", + "uuid": "cd7524b6-6f96-433b-8341-1234e93f0239", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 955, + "trimY": 860, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_61.png": { + "ver": "1.0.4", + "uuid": "dac66295-a2eb-403d-a54a-fac514dfe87c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 970, + "trimY": 899, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_62.png": { + "ver": "1.0.4", + "uuid": "62e61289-4b3c-4c3b-8645-ac9c31b9122f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1058, + "trimY": 848, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_63.png": { + "ver": "1.0.4", + "uuid": "a22e5cbb-51e6-48e3-9e04-0961244068a2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1009, + "trimY": 909, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_64.png": { + "ver": "1.0.4", + "uuid": "624df17d-638e-4ed3-bd50-ce831b7555b1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1109, + "trimY": 905, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_65.png": { + "ver": "1.0.4", + "uuid": "a05eb682-687b-4573-ac84-a573e77f4134", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1162, + "trimY": 903, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_66.png": { + "ver": "1.0.4", + "uuid": "55b234a5-3e76-467a-94f3-5ef7563e9b45", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1298, + "trimY": 957, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_67.png": { + "ver": "1.0.4", + "uuid": "2ad10d5f-d4d1-4a85-b08c-da97d50326e6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1351, + "trimY": 957, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_68.png": { + "ver": "1.0.4", + "uuid": "06cb8cf8-0b6f-414b-ab64-47d73265c488", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1404, + "trimY": 957, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_69.png": { + "ver": "1.0.4", + "uuid": "2a324b54-b7f3-4772-80b2-003e64d2c570", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1457, + "trimY": 957, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_70.png": { + "ver": "1.0.4", + "uuid": "3fa4ce46-baef-47f5-bd18-9c0a1866da2f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1510, + "trimY": 957, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_71.png": { + "ver": "1.0.4", + "uuid": "4963d9fb-cb7c-4874-8ff6-65681dd85b01", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1563, + "trimY": 957, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Atked2_72.png": { + "ver": "1.0.4", + "uuid": "0b120196-d027-4b3a-a696-83b6fa57f599", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1667, + "trimY": 54, + "width": 39, + "height": 53, + "rawWidth": 39, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_00.png": { + "ver": "1.0.4", + "uuid": "99db148a-4380-407d-a3fe-3d56eefaad1d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_01.png": { + "ver": "1.0.4", + "uuid": "79ed583c-75d9-4562-a010-b328213bfd15", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_02.png": { + "ver": "1.0.4", + "uuid": "337d7b16-b5f7-4220-8217-529d0efefd3f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_03.png": { + "ver": "1.0.4", + "uuid": "43e297ef-c191-4e6e-90b9-fed0130a53d4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_04.png": { + "ver": "1.0.4", + "uuid": "552e95ab-5253-48d5-8411-9d2b3d7843cc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_05.png": { + "ver": "1.0.4", + "uuid": "ca18916d-3ef2-459f-9362-8b0611daebae", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_06.png": { + "ver": "1.0.4", + "uuid": "2c253023-e23b-4db4-956d-a74bafa7207d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_07.png": { + "ver": "1.0.4", + "uuid": "5f6b4e95-464f-41f6-81be-137fa613bbba", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_08.png": { + "ver": "1.0.4", + "uuid": "5b16759c-1ebc-4f14-a33d-5314589a4fa9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_09.png": { + "ver": "1.0.4", + "uuid": "265ad10b-a70a-4c3b-8bab-649610956d36", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_10.png": { + "ver": "1.0.4", + "uuid": "3e3d35a3-d6a4-4a55-b0fd-838d39b888a5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_11.png": { + "ver": "1.0.4", + "uuid": "ed72e246-6bf3-4f34-86f7-00495652308e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_12.png": { + "ver": "1.0.4", + "uuid": "e629f0ee-7135-40b8-802e-d5b496812f1b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_13.png": { + "ver": "1.0.4", + "uuid": "352c953d-2934-41f2-8bf3-f790aa74d93a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_14.png": { + "ver": "1.0.4", + "uuid": "0b42bb25-4745-45be-b7c8-3b51cf7ea57f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_15.png": { + "ver": "1.0.4", + "uuid": "4a2ce5ba-4ec4-46df-a54a-e1fa39cb3c79", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 515, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_16.png": { + "ver": "1.0.4", + "uuid": "8c9b7272-a91f-4064-bce1-f32358f2b863", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_17.png": { + "ver": "1.0.4", + "uuid": "e2d9ca32-cd3e-4ba9-a494-8bc6d13706b0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_18.png": { + "ver": "1.0.4", + "uuid": "4dc55afa-4228-466d-9b6c-484908ccf3f7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_19.png": { + "ver": "1.0.4", + "uuid": "3fd55188-63f6-463b-8212-85f935f78fb9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_20.png": { + "ver": "1.0.4", + "uuid": "53ad54c8-c48d-4108-a055-abdaa3cec609", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_21.png": { + "ver": "1.0.4", + "uuid": "3c9059cf-cfcc-475f-8c7f-1e575d4e15bd", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 618, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_22.png": { + "ver": "1.0.4", + "uuid": "a8c38e71-8e90-444c-b906-403991180ae4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 515, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_23.png": { + "ver": "1.0.4", + "uuid": "611963c0-ca50-416e-9d61-72beeea6235d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_24.png": { + "ver": "1.0.4", + "uuid": "64378ff4-eedb-4425-a1b3-dd387e1028db", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_25.png": { + "ver": "1.0.4", + "uuid": "aff568ca-eb2e-4907-b2d2-75b3f8969dfb", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_26.png": { + "ver": "1.0.4", + "uuid": "0ad92585-cd23-40d2-8aaa-355a751ade2b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_27.png": { + "ver": "1.0.4", + "uuid": "d8da1053-81da-44b5-9011-b018cf4336c6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_28.png": { + "ver": "1.0.4", + "uuid": "f35ced65-93de-4d59-b78d-0b0b1b8d8583", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 721, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_29.png": { + "ver": "1.0.4", + "uuid": "58cd1296-d767-4938-935f-368a0429c504", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 618, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_30.png": { + "ver": "1.0.4", + "uuid": "b4b846d1-afd7-40a9-b2a9-049fd22114dc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 515, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_31.png": { + "ver": "1.0.4", + "uuid": "f4fd15ff-1291-4110-a1b3-56b81bd2473b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_32.png": { + "ver": "1.0.4", + "uuid": "85dfd0ad-3aa7-4ce3-a187-efacf56de90a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_33.png": { + "ver": "1.0.4", + "uuid": "7ca74379-236b-45d1-a2ee-93d03aec9c65", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_34.png": { + "ver": "1.0.4", + "uuid": "6c2a888f-077c-4f8f-ba55-6c4cb7fea50d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_35.png": { + "ver": "1.0.4", + "uuid": "34b4c76e-6b84-4b92-8bda-b7d20d17a147", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 385, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_36.png": { + "ver": "1.0.4", + "uuid": "6a56fd3a-984f-4026-8938-fb6b146baad4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 824, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_37.png": { + "ver": "1.0.4", + "uuid": "c820c538-a728-4ab6-a8a5-64f270a1ee39", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 721, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_38.png": { + "ver": "1.0.4", + "uuid": "67cb8604-caac-4879-b083-8d3806a55115", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 618, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_39.png": { + "ver": "1.0.4", + "uuid": "f62792d6-d8c2-41ff-9741-383f8b69ec5a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 515, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_40.png": { + "ver": "1.0.4", + "uuid": "0dd4b926-49b5-4112-8098-6aa6701b1a7b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_41.png": { + "ver": "1.0.4", + "uuid": "90d1e838-587c-4f41-aea1-4f9d3dffd125", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_42.png": { + "ver": "1.0.4", + "uuid": "52ca6c23-fd05-45a0-a2cf-e188fd25890a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_43.png": { + "ver": "1.0.4", + "uuid": "530ac16e-8ce0-466c-81be-0ca176b86011", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 385, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_44.png": { + "ver": "1.0.4", + "uuid": "e79f8adf-f7ca-41da-82c8-e420ae1e9bb2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 440, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_45.png": { + "ver": "1.0.4", + "uuid": "aaca1b1b-4bb1-4aa8-b2df-5440cc6c211b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 55, + "trimY": 824, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_46.png": { + "ver": "1.0.4", + "uuid": "a17c415e-4354-45c7-85f8-208d47419793", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 927, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_47.png": { + "ver": "1.0.4", + "uuid": "22afe4bf-6f82-4c70-982b-c04b7c41d867", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 721, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_48.png": { + "ver": "1.0.4", + "uuid": "8008eaba-659f-4da5-a2fc-25add3173ca5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 618, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_49.png": { + "ver": "1.0.4", + "uuid": "b0bb1d45-6643-4631-bf6a-999d69af0859", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 515, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_50.png": { + "ver": "1.0.4", + "uuid": "72598b23-6fc9-4cb5-8285-e1942e3cd3a7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_51.png": { + "ver": "1.0.4", + "uuid": "56b3e960-f6c1-45d7-abe3-2a7bcf1c3813", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_52.png": { + "ver": "1.0.4", + "uuid": "59b695d1-d763-403f-a9b7-5a266f8959ee", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 385, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_53.png": { + "ver": "1.0.4", + "uuid": "76f5dc36-76f1-447d-94fc-52ab068564a9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 440, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_54.png": { + "ver": "1.0.4", + "uuid": "d0d9160f-b77f-4d1b-9fde-9106ba04c387", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_55.png": { + "ver": "1.0.4", + "uuid": "eb8dd8e6-c412-4e28-9b1c-28224c321e36", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 110, + "trimY": 824, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_56.png": { + "ver": "1.0.4", + "uuid": "ce87605c-81ba-4329-8516-592bc84403f1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 721, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_57.png": { + "ver": "1.0.4", + "uuid": "3891e56e-5045-46aa-bbbe-6fe8f3898032", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 618, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_58.png": { + "ver": "1.0.4", + "uuid": "c1e7fed5-c636-4322-b8c6-6ec75e773762", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 515, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_59.png": { + "ver": "1.0.4", + "uuid": "890b2cb9-8e87-4be4-a8bf-829dff406c85", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_60.png": { + "ver": "1.0.4", + "uuid": "5765c1d6-6527-4371-97a8-a413540da676", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 385, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_61.png": { + "ver": "1.0.4", + "uuid": "65f70e4a-005e-41d7-89ac-42b2055c2e58", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 440, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_62.png": { + "ver": "1.0.4", + "uuid": "0163adb2-39cf-49cb-8917-ff5c718ce3ce", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_63.png": { + "ver": "1.0.4", + "uuid": "7fa6b81b-1292-418d-a9c3-4994fdae451b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_64.png": { + "ver": "1.0.4", + "uuid": "a5cd1442-2de1-4938-bb0e-d90b86936faf", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 165, + "trimY": 824, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_65.png": { + "ver": "1.0.4", + "uuid": "6b513902-4fb3-47db-b0eb-be14df917980", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 103, + "trimY": 927, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_66.png": { + "ver": "1.0.4", + "uuid": "14194adc-46fe-4a35-b153-a1e867420362", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 721, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_67.png": { + "ver": "1.0.4", + "uuid": "b53d2367-61fa-4d02-ae1a-6cda692a9f80", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 618, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_68.png": { + "ver": "1.0.4", + "uuid": "b41f2927-4462-432f-9751-5fbc14455880", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 515, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_69.png": { + "ver": "1.0.4", + "uuid": "993661e7-5d9d-449a-a7bb-c73a82b37f33", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 385, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_70.png": { + "ver": "1.0.4", + "uuid": "65e344be-d31c-4451-bb87-fe8a7dafe09b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 440, + "trimY": 309, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_71.png": { + "ver": "1.0.4", + "uuid": "7c4f45e1-87d8-4780-901e-ab680fa442d0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 206, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_72.png": { + "ver": "1.0.4", + "uuid": "04f7f1ff-c4e4-4a3f-920a-ab84ca5d2b0a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 550, + "trimY": 103, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_73.png": { + "ver": "1.0.4", + "uuid": "3e23b5e8-c570-44cb-afed-807c4410ab37", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 605, + "trimY": 0, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_74.png": { + "ver": "1.0.4", + "uuid": "8a5996bb-5ac4-4994-a7a7-373bf1f0c55f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 220, + "trimY": 824, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_75.png": { + "ver": "1.0.4", + "uuid": "0d27cdc2-152e-4a2b-aeb4-8eed2095b699", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 275, + "trimY": 721, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_76.png": { + "ver": "1.0.4", + "uuid": "e6bc108d-7fc0-4486-9d33-6cc797b751d1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 330, + "trimY": 618, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_77.png": { + "ver": "1.0.4", + "uuid": "7ba1278d-73df-4585-a203-cadafdf61a5c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 385, + "trimY": 515, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Dying_78.png": { + "ver": "1.0.4", + "uuid": "c5defaab-5b1b-4792-973e-541cfd3cf825", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 440, + "trimY": 412, + "width": 55, + "height": 103, + "rawWidth": 55, + "rawHeight": 103, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_00.png": { + "ver": "1.0.4", + "uuid": "31b10e1f-7433-4c0d-b9a7-576adc0cdb51", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 381, + "trimY": 836, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_01.png": { + "ver": "1.0.4", + "uuid": "80d4afc7-d21a-4eec-ab5e-ec833e1e905b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1083, + "trimY": 370, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_02.png": { + "ver": "1.0.4", + "uuid": "d75070b5-3dbe-4d77-886e-8851f31e8ac8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1153, + "trimY": 585, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_03.png": { + "ver": "1.0.4", + "uuid": "a30e880e-1ff1-434d-bdbc-a3a2e0de671b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 596, + "trimY": 932, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_04.png": { + "ver": "1.0.4", + "uuid": "87cec524-adf7-48a6-af37-b1bae14b9317", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 963, + "trimY": 700, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_05.png": { + "ver": "1.0.4", + "uuid": "d415a590-b4bf-4590-834a-b075705e063a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1060, + "trimY": 704, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_06.png": { + "ver": "1.0.4", + "uuid": "e8b7eb99-0b52-4f01-8dd3-6c1ff23a8552", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 963, + "trimY": 753, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_07.png": { + "ver": "1.0.4", + "uuid": "599c03fd-c5f1-45b1-9cd8-0164f8e82fe0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1153, + "trimY": 638, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_08.png": { + "ver": "1.0.4", + "uuid": "0f71de95-9947-40da-929f-dd25bf43884e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1113, + "trimY": 693, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_09.png": { + "ver": "1.0.4", + "uuid": "99980a57-3af2-4c23-84b8-87759ee79e10", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1113, + "trimY": 746, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_10.png": { + "ver": "1.0.4", + "uuid": "ab001dd3-587c-4a23-adbc-5f0d3eedccaf", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1160, + "trimY": 691, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_11.png": { + "ver": "1.0.4", + "uuid": "9869ec96-1c78-482e-bff8-95d0b064d0f6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1160, + "trimY": 744, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_12.png": { + "ver": "1.0.4", + "uuid": "0863d34e-0116-4134-b17e-32dae8f1589f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1307, + "trimY": 687, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_13.png": { + "ver": "1.0.4", + "uuid": "10454569-56bb-4721-9a94-49015f5e11cc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1307, + "trimY": 740, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_14.png": { + "ver": "1.0.4", + "uuid": "b13c9ee9-a497-43b3-9b54-83250bc62cc6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1354, + "trimY": 687, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_15.png": { + "ver": "1.0.4", + "uuid": "80e898d9-10a9-4817-988c-7571744173e7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1354, + "trimY": 740, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_16.png": { + "ver": "1.0.4", + "uuid": "0e4e927d-0c67-43a1-aade-a6b5ea3fe498", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1401, + "trimY": 687, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_17.png": { + "ver": "1.0.4", + "uuid": "6c327da9-60a2-4b63-89ca-05e7bb9b8c5f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1401, + "trimY": 740, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_18.png": { + "ver": "1.0.4", + "uuid": "9e71217f-0580-481e-b2ea-8886eb7cf492", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1448, + "trimY": 687, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_19.png": { + "ver": "1.0.4", + "uuid": "ed851c4e-6a42-4643-8d50-1bac3d55b1ac", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1448, + "trimY": 740, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_20.png": { + "ver": "1.0.4", + "uuid": "3a4738ba-bf3c-47cf-98f7-7e68aba0c96c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1495, + "trimY": 687, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_21.png": { + "ver": "1.0.4", + "uuid": "d035e717-c8ab-4cdc-b59f-c61c9e85990a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1495, + "trimY": 740, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_22.png": { + "ver": "1.0.4", + "uuid": "4bf6ea06-54bf-4c25-87f7-c7d9dca56fab", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1542, + "trimY": 687, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_23.png": { + "ver": "1.0.4", + "uuid": "a4b324b1-1191-43ee-ac76-a4536d1dbac7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1542, + "trimY": 740, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_24.png": { + "ver": "1.0.4", + "uuid": "4e2ac5fa-1c68-4cbd-80e6-a94af579796d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1589, + "trimY": 687, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_25.png": { + "ver": "1.0.4", + "uuid": "64cd0353-429a-4a47-a6fc-b0f12e565e94", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1589, + "trimY": 740, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_26.png": { + "ver": "1.0.4", + "uuid": "3fa0ae73-f8f8-455f-82c3-24a428379e95", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1636, + "trimY": 687, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_27.png": { + "ver": "1.0.4", + "uuid": "a4679596-56d5-44f2-a349-7579ad7fbe33", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1636, + "trimY": 740, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_28.png": { + "ver": "1.0.4", + "uuid": "3293d474-dfb3-412a-aca1-ce76f70a2181", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1160, + "trimY": 797, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_29.png": { + "ver": "1.0.4", + "uuid": "9794aec3-5e18-4df4-bae2-296f7c5ed935", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1113, + "trimY": 799, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_30.png": { + "ver": "1.0.4", + "uuid": "4373d7b7-ea22-4ba2-a6df-c0672d4310a2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1060, + "trimY": 801, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_31.png": { + "ver": "1.0.4", + "uuid": "89b6617e-2131-4bc6-840a-048af7944bb8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1160, + "trimY": 850, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_32.png": { + "ver": "1.0.4", + "uuid": "9c267a7b-ab24-49b4-a2f3-26d885799f23", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 643, + "trimY": 769, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_33.png": { + "ver": "1.0.4", + "uuid": "df3255ea-00af-47c2-9deb-4ccd27a62706", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 643, + "trimY": 822, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_34.png": { + "ver": "1.0.4", + "uuid": "e15242c9-29ba-411a-a93f-dddad5613956", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 690, + "trimY": 802, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_35.png": { + "ver": "1.0.4", + "uuid": "ef3f8029-d5cc-4024-95ca-1f2aa062a0d5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 737, + "trimY": 802, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_36.png": { + "ver": "1.0.4", + "uuid": "7b48f205-a1e8-4233-8c72-11ae9c0ccea7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 784, + "trimY": 802, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_37.png": { + "ver": "1.0.4", + "uuid": "ffc69bce-fd84-42d8-b8c9-fe05e6c7fa03", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 831, + "trimY": 802, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_38.png": { + "ver": "1.0.4", + "uuid": "81805795-ab34-47c1-ab45-57f54d28e72f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 917, + "trimY": 807, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_39.png": { + "ver": "1.0.4", + "uuid": "adae26a6-7991-4583-966c-4364ba35474d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 964, + "trimY": 806, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_40.png": { + "ver": "1.0.4", + "uuid": "ab51a779-10b7-4039-ac45-6ada002e702f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1011, + "trimY": 803, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_41.png": { + "ver": "1.0.4", + "uuid": "173d4746-0af5-40ae-a472-ba6406c700dc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 637, + "trimY": 876, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_42.png": { + "ver": "1.0.4", + "uuid": "4054d644-4b5c-473d-ad2c-1c1eb06b01d7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 643, + "trimY": 923, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_43.png": { + "ver": "1.0.4", + "uuid": "0f55009f-71dc-4e70-8152-7dbc2a16a17c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 690, + "trimY": 894, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_44.png": { + "ver": "1.0.4", + "uuid": "d273f52f-4ec1-4ccf-8820-92879682213e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 737, + "trimY": 894, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_45.png": { + "ver": "1.0.4", + "uuid": "37c2f336-a3c8-4b46-8031-d48c3f36c675", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 784, + "trimY": 894, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_46.png": { + "ver": "1.0.4", + "uuid": "8cee57cb-5e79-4fe9-8368-745b38a37021", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 831, + "trimY": 894, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_47.png": { + "ver": "1.0.4", + "uuid": "4e67aa7d-d6a6-405b-99c4-ef5be609fdf4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 878, + "trimY": 899, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_48.png": { + "ver": "1.0.4", + "uuid": "b0b7fc1a-f42a-4977-bfef-93841bdfa2f8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 927, + "trimY": 952, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_49.png": { + "ver": "1.0.4", + "uuid": "352bbb78-d87c-425d-b39e-a401432f0070", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 980, + "trimY": 952, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_50.png": { + "ver": "1.0.4", + "uuid": "9aaadf6a-808f-44f4-b7a8-392138851168", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1011, + "trimY": 856, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_51.png": { + "ver": "1.0.4", + "uuid": "a319abd0-a689-400c-8f2a-94ccc70e50f9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1111, + "trimY": 852, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_52.png": { + "ver": "1.0.4", + "uuid": "2efd4c0f-10c1-41be-81b5-40b3d10cb863", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1062, + "trimY": 887, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_53.png": { + "ver": "1.0.4", + "uuid": "8b94f28d-7da8-4e83-a9d6-46072b24a847", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1201, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_54.png": { + "ver": "1.0.4", + "uuid": "1f153a21-9a57-4bf7-a7bb-fa2a2e3b9484", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1254, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_55.png": { + "ver": "1.0.4", + "uuid": "2d3ad677-51b8-4d53-924c-dea3f66f0510", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1307, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_56.png": { + "ver": "1.0.4", + "uuid": "68aabf9d-5b21-4405-b92d-18a837895c37", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1360, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_57.png": { + "ver": "1.0.4", + "uuid": "cb893520-96b5-4ce4-a9dd-90ca4eac1882", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1413, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_58.png": { + "ver": "1.0.4", + "uuid": "498ee98f-7211-4495-99fe-662aee098217", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1466, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_59.png": { + "ver": "1.0.4", + "uuid": "da05be2e-e07f-4081-a99d-9c1b1459b862", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1519, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_60.png": { + "ver": "1.0.4", + "uuid": "46e64686-1071-4db2-8f3d-4a0a00dc8e10", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1572, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_61.png": { + "ver": "1.0.4", + "uuid": "5a082e4d-d615-411f-880e-b03bda363cea", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1625, + "trimY": 910, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_62.png": { + "ver": "1.0.4", + "uuid": "6d582b00-b973-4397-8866-32f531d4366e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1033, + "trimY": 957, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_63.png": { + "ver": "1.0.4", + "uuid": "1de67f2c-e9ea-438d-8f30-b7c40159bc92", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1086, + "trimY": 957, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_64.png": { + "ver": "1.0.4", + "uuid": "6e98330a-9709-44e1-8704-aa6430bd8236", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1139, + "trimY": 957, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_65.png": { + "ver": "1.0.4", + "uuid": "b2557433-9168-4b78-a9ac-78b33633b1d8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1192, + "trimY": 957, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle1_66.png": { + "ver": "1.0.4", + "uuid": "91bba749-7338-4bdc-b9a2-0450a183378f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1245, + "trimY": 957, + "width": 47, + "height": 53, + "rawWidth": 47, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_000.png": { + "ver": "1.0.4", + "uuid": "394c1279-7dd8-42bd-98e9-a13266dbbab7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 604, + "trimY": 217, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_001.png": { + "ver": "1.0.4", + "uuid": "4fbeede1-1ad0-40eb-8a6b-1539690bd149", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 439, + "trimY": 629, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_002.png": { + "ver": "1.0.4", + "uuid": "3ca3c1c5-7081-42dc-998a-fae1b7f3c4c4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1639, + "trimY": 107, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_003.png": { + "ver": "1.0.4", + "uuid": "28d4ff64-59b0-4a27-950b-839964a4aa21", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 659, + "trimY": 377, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_004.png": { + "ver": "1.0.4", + "uuid": "6c964e15-2b85-4487-8ace-6b426bdcde0e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 923, + "trimY": 486, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_005.png": { + "ver": "1.0.4", + "uuid": "e5c936dd-d330-4ea2-ab98-0d4ae2fc24a2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 923, + "trimY": 539, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_006.png": { + "ver": "1.0.4", + "uuid": "12b4e29b-8ae2-4f86-aeab-82df26617224", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 977, + "trimY": 266, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_007.png": { + "ver": "1.0.4", + "uuid": "46e0b4b0-d944-4121-8c59-a137180df027", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 977, + "trimY": 319, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_008.png": { + "ver": "1.0.4", + "uuid": "bb1b2430-5af0-470c-a4c3-fb6e509ef7c0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1027, + "trimY": 266, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_009.png": { + "ver": "1.0.4", + "uuid": "ae75d5ab-585a-407c-a440-2f6e004dfad3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1027, + "trimY": 319, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_010.png": { + "ver": "1.0.4", + "uuid": "590c9cd3-62c3-4f1a-a5ab-cc4d56f3bf28", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 989, + "trimY": 372, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_011.png": { + "ver": "1.0.4", + "uuid": "71c62ccc-f40d-4399-a0c9-deb76ca07b5c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1121, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_012.png": { + "ver": "1.0.4", + "uuid": "be7a4db9-2cdd-4b74-a18c-c0b5e4fe8ef9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1171, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_013.png": { + "ver": "1.0.4", + "uuid": "bf09425d-f15b-4d82-a7b8-f660851c1f1f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1221, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_014.png": { + "ver": "1.0.4", + "uuid": "a3531505-b898-4441-b89e-48b187325dac", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1271, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_015.png": { + "ver": "1.0.4", + "uuid": "b78b5a5e-c84e-4339-89e5-cb714010ef1f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1321, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_016.png": { + "ver": "1.0.4", + "uuid": "d99f9d40-2def-43ea-bbd4-5a8ee47c659f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1371, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_017.png": { + "ver": "1.0.4", + "uuid": "61f5dd57-6695-4582-b2c8-db6582af3862", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1421, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_018.png": { + "ver": "1.0.4", + "uuid": "8652aa65-7b23-4689-8677-78adacafe200", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1471, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_019.png": { + "ver": "1.0.4", + "uuid": "6e59bd4b-0aec-46a7-ae96-7f405e476225", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1521, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_020.png": { + "ver": "1.0.4", + "uuid": "47aa92b2-0510-41e3-becc-29dcf3fff063", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1571, + "trimY": 263, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_021.png": { + "ver": "1.0.4", + "uuid": "148b9f4d-929d-4913-b1b6-254138f173ae", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1621, + "trimY": 266, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_022.png": { + "ver": "1.0.4", + "uuid": "2e687706-225b-4b0f-82f1-a47bc49b3b1a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1077, + "trimY": 320, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_023.png": { + "ver": "1.0.4", + "uuid": "6ca10553-49b1-4bec-a62d-1cbd1757ec24", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1130, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_024.png": { + "ver": "1.0.4", + "uuid": "ff536dda-b29f-414f-88a2-12ebadc810e8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1180, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_025.png": { + "ver": "1.0.4", + "uuid": "85ccd35a-bdd6-47b0-8324-386b39c652c7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1230, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_026.png": { + "ver": "1.0.4", + "uuid": "1bff8165-e0ac-4a19-a659-96b2dd8d9676", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1280, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_027.png": { + "ver": "1.0.4", + "uuid": "44586130-51ac-4853-89d8-f4c2c4776563", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1330, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_028.png": { + "ver": "1.0.4", + "uuid": "40864658-7f60-4650-be99-e9216e38fee5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1380, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_029.png": { + "ver": "1.0.4", + "uuid": "4445dede-e923-412b-a380-471ba20bd4e5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1430, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_030.png": { + "ver": "1.0.4", + "uuid": "6cda84b9-08fc-4977-a3d6-731e113b2093", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1480, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_031.png": { + "ver": "1.0.4", + "uuid": "cf3043cc-3e6b-4ee3-88b8-c77c4fd3dbbe", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1530, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_032.png": { + "ver": "1.0.4", + "uuid": "676411cf-6407-4f9a-b685-3c8c6121e6f9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1580, + "trimY": 316, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_033.png": { + "ver": "1.0.4", + "uuid": "ea868568-e8f4-4364-8f4c-8dbd91658ca9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1130, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_034.png": { + "ver": "1.0.4", + "uuid": "a147c26d-d6af-4d10-840c-5be1a63901ae", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1180, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_035.png": { + "ver": "1.0.4", + "uuid": "8adb203f-cb42-4047-a4ce-a64c5300d245", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1230, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_036.png": { + "ver": "1.0.4", + "uuid": "eed6c0e9-2eab-43d9-a215-d648c600bc88", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1280, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_037.png": { + "ver": "1.0.4", + "uuid": "5f1a5fb6-c729-4c17-b5a5-a5c020c96341", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1330, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_038.png": { + "ver": "1.0.4", + "uuid": "c883429a-177f-486d-b149-efbc99fefb1b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1380, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_039.png": { + "ver": "1.0.4", + "uuid": "6605d04c-2576-4c56-b8bd-cd046d7c32b1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1430, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_040.png": { + "ver": "1.0.4", + "uuid": "2188359f-593d-49fd-b264-6dbebe578760", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1480, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_041.png": { + "ver": "1.0.4", + "uuid": "2087cd10-2543-4f60-99b5-aa12fe15f504", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1530, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_042.png": { + "ver": "1.0.4", + "uuid": "cd351f43-930a-416a-88f9-f4ab386a6b0a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1580, + "trimY": 369, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_043.png": { + "ver": "1.0.4", + "uuid": "b342d3a0-1c99-4d91-91b4-8902f6aecd00", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1026, + "trimY": 426, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_044.png": { + "ver": "1.0.4", + "uuid": "b1190ef8-a68f-4151-8931-361545040dfc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1159, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_045.png": { + "ver": "1.0.4", + "uuid": "9829163c-ad79-4bf8-be9a-7fdba036fb1f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1209, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_046.png": { + "ver": "1.0.4", + "uuid": "0fc273d6-0a1a-4e13-ab3b-103b8a86a0e9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1259, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_047.png": { + "ver": "1.0.4", + "uuid": "c0cd2e2e-7e2a-4d72-bb89-255855b0684a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1309, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_048.png": { + "ver": "1.0.4", + "uuid": "499b1d7c-bc4c-4dbf-a3f6-13275d43432c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1359, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_049.png": { + "ver": "1.0.4", + "uuid": "d4e737ca-d9c4-4163-8546-b25d9370469b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1409, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_050.png": { + "ver": "1.0.4", + "uuid": "f150d2ba-e498-433e-8c0d-0c9e68fbb397", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1459, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_051.png": { + "ver": "1.0.4", + "uuid": "ade4a079-1929-47e9-8644-d3cf612c358e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1509, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_052.png": { + "ver": "1.0.4", + "uuid": "60e55476-e798-41a6-a66d-ed499a354988", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1559, + "trimY": 422, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_053.png": { + "ver": "1.0.4", + "uuid": "806c5dd4-b2fb-415e-bd91-d67dfa1d9205", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1609, + "trimY": 424, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_054.png": { + "ver": "1.0.4", + "uuid": "47466437-f390-4bb4-8b31-f4eb83763a10", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1193, + "trimY": 475, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_055.png": { + "ver": "1.0.4", + "uuid": "a0e12ab3-0afe-469d-a0a1-143b828ef413", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1243, + "trimY": 475, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_056.png": { + "ver": "1.0.4", + "uuid": "65f852ed-ea9b-4ad9-89fa-7731ee5d12a8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1293, + "trimY": 475, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_057.png": { + "ver": "1.0.4", + "uuid": "0bb239b7-ba33-44d8-8ba7-f995cd889948", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1343, + "trimY": 475, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_058.png": { + "ver": "1.0.4", + "uuid": "f2dce84d-9aec-41b4-aaa9-6ea719e9e9fc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1393, + "trimY": 475, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_059.png": { + "ver": "1.0.4", + "uuid": "b6448465-2c01-4118-986f-beea56c19eea", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1443, + "trimY": 475, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_060.png": { + "ver": "1.0.4", + "uuid": "7cca6205-7f86-41f5-a82b-46d0726551bb", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1493, + "trimY": 475, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_061.png": { + "ver": "1.0.4", + "uuid": "6a9d04e3-a22e-49b5-84fa-bb3d533577e0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1543, + "trimY": 475, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_062.png": { + "ver": "1.0.4", + "uuid": "a0eb2ce6-a049-4b5c-9fb2-deb15869050b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1193, + "trimY": 528, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_063.png": { + "ver": "1.0.4", + "uuid": "c0034292-1a6f-4d09-a875-c482b710b400", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1243, + "trimY": 528, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_064.png": { + "ver": "1.0.4", + "uuid": "815bdf6d-e305-484c-8135-ab7ad49db565", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1293, + "trimY": 528, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_065.png": { + "ver": "1.0.4", + "uuid": "6d000227-6d33-4904-af97-246ca45de947", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1343, + "trimY": 528, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_066.png": { + "ver": "1.0.4", + "uuid": "e7a597cf-9c1c-4c21-896d-f1150a4cde9e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1393, + "trimY": 528, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_067.png": { + "ver": "1.0.4", + "uuid": "e950ae81-da62-491d-928b-c7e0a72e23f8", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1443, + "trimY": 528, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_068.png": { + "ver": "1.0.4", + "uuid": "f84e204c-114f-4fe7-8d65-e37ecfe09b66", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1493, + "trimY": 528, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_069.png": { + "ver": "1.0.4", + "uuid": "e18fae56-12c6-4607-bf0f-7e2528af7e6f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1543, + "trimY": 528, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_070.png": { + "ver": "1.0.4", + "uuid": "43777453-9a69-4aa8-a338-cb154d017426", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1632, + "trimY": 478, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_071.png": { + "ver": "1.0.4", + "uuid": "21b23d8e-259e-4d08-a2ab-905ccb6cfb6d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1632, + "trimY": 531, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_072.png": { + "ver": "1.0.4", + "uuid": "0fdf190a-cbf0-40db-9bbe-3150d6258b24", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1200, + "trimY": 581, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_073.png": { + "ver": "1.0.4", + "uuid": "d668911c-16da-4b70-b94c-5266875b6f6b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1250, + "trimY": 581, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_074.png": { + "ver": "1.0.4", + "uuid": "c7c9a2ec-6c92-4f89-9ada-6486be7966b3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1300, + "trimY": 581, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_075.png": { + "ver": "1.0.4", + "uuid": "bcb48130-45dd-46c8-ad97-f29f668712bd", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1350, + "trimY": 581, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_076.png": { + "ver": "1.0.4", + "uuid": "4189e3ca-476b-47f0-bff0-e116e3bf5350", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1400, + "trimY": 581, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_077.png": { + "ver": "1.0.4", + "uuid": "e4811279-90a2-40e5-a95c-080b91adda9a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1450, + "trimY": 581, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_078.png": { + "ver": "1.0.4", + "uuid": "bdbbfaf0-7d50-412b-94fd-3a074f9740c9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1500, + "trimY": 581, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_079.png": { + "ver": "1.0.4", + "uuid": "8d25d8f7-753e-4617-8923-38dcaf9630b0", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1550, + "trimY": 581, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_080.png": { + "ver": "1.0.4", + "uuid": "ab304bf2-a41f-4b49-a0aa-7a0867a02df1", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1600, + "trimY": 584, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_081.png": { + "ver": "1.0.4", + "uuid": "ca349fc3-e364-4739-8763-210eca77fc9f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1653, + "trimY": 584, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_082.png": { + "ver": "1.0.4", + "uuid": "58a8d73d-c745-4ab0-9e23-7a7ee40cda4f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 958, + "trimY": 594, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_083.png": { + "ver": "1.0.4", + "uuid": "fd737955-5509-498b-8f05-d893bad83e62", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1008, + "trimY": 594, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_084.png": { + "ver": "1.0.4", + "uuid": "da74202b-3ada-467e-bf67-a5b8b74d2591", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 960, + "trimY": 647, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_085.png": { + "ver": "1.0.4", + "uuid": "2c5bc8a1-c26b-4ce7-b404-bdd3f1a8c257", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1010, + "trimY": 644, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_086.png": { + "ver": "1.0.4", + "uuid": "479b1003-9f51-48fd-93bd-22372205645c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1010, + "trimY": 697, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_087.png": { + "ver": "1.0.4", + "uuid": "c446bd92-a7ee-4ba9-bae3-257c7d3c8cce", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1010, + "trimY": 750, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_088.png": { + "ver": "1.0.4", + "uuid": "6124258d-7f7c-48eb-875c-652de0e13afb", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1060, + "trimY": 751, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_089.png": { + "ver": "1.0.4", + "uuid": "737d98c6-34fb-49d9-886e-82a73e44b7a5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1200, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_090.png": { + "ver": "1.0.4", + "uuid": "4e754680-faa4-4a88-9e88-d3842fb7a858", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1250, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_091.png": { + "ver": "1.0.4", + "uuid": "7ad6718d-efde-494b-8899-380614117085", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1300, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_092.png": { + "ver": "1.0.4", + "uuid": "45155edb-4789-4031-a9e4-4f88429c3b79", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1350, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_093.png": { + "ver": "1.0.4", + "uuid": "144f3570-1798-433f-bfbc-71bcbcf095da", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1400, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_094.png": { + "ver": "1.0.4", + "uuid": "ef2ee158-2382-469e-bef6-bca10f55417f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1450, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_095.png": { + "ver": "1.0.4", + "uuid": "49c13bb9-1fa3-4c76-b420-f9db8f0e6c7b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1500, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_096.png": { + "ver": "1.0.4", + "uuid": "84aad06e-33b7-41f2-95ea-e3e7132dff6f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1550, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_097.png": { + "ver": "1.0.4", + "uuid": "d34504ad-3b0f-4c60-8e50-596c0721564d", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1600, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_098.png": { + "ver": "1.0.4", + "uuid": "7985b99f-1402-4ee5-b7ed-57988eb0f061", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1650, + "trimY": 634, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_099.png": { + "ver": "1.0.4", + "uuid": "7545ca05-d004-4b39-ab4c-2333b2a8af8e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1207, + "trimY": 687, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_100.png": { + "ver": "1.0.4", + "uuid": "9f435c66-9948-4afd-ba3c-cee9bd3e7586", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1207, + "trimY": 740, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_101.png": { + "ver": "1.0.4", + "uuid": "f32c228d-604e-41d5-82a0-f4421741ff73", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1257, + "trimY": 687, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Idle2_102.png": { + "ver": "1.0.4", + "uuid": "9f99f169-91b8-4962-a3b4-805cff376eb4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1257, + "trimY": 740, + "width": 50, + "height": 53, + "rawWidth": 50, + "rawHeight": 53, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_00.png": { + "ver": "1.0.4", + "uuid": "e62f3718-263c-4a93-8405-55aca440180f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1087, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_01.png": { + "ver": "1.0.4", + "uuid": "700a3fef-00d2-437a-a323-cc79802d76f5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1145, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_02.png": { + "ver": "1.0.4", + "uuid": "bf8ce5ef-5171-45ab-97dd-8c9da2dbcd5a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1203, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_03.png": { + "ver": "1.0.4", + "uuid": "0894f61a-e4a0-458d-890e-aa3d60e4bf4f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1261, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_04.png": { + "ver": "1.0.4", + "uuid": "1995a986-6421-427c-92fe-4e3bae551e67", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1319, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_05.png": { + "ver": "1.0.4", + "uuid": "4ca1ce37-410d-4437-8b7a-498292e74bc6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1377, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_06.png": { + "ver": "1.0.4", + "uuid": "1e23a398-6051-4a69-a71d-7ea4909da77e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1435, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_07.png": { + "ver": "1.0.4", + "uuid": "ef18849a-0d4d-4bfe-a707-073958511ca6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1493, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_08.png": { + "ver": "1.0.4", + "uuid": "f217d368-9fc9-48cd-b635-059a7bc472a4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1551, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_09.png": { + "ver": "1.0.4", + "uuid": "b312cebf-3945-40c7-a367-3bc1d6689109", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1609, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_10.png": { + "ver": "1.0.4", + "uuid": "476ddde6-8fd9-40cc-a789-0a08ebff5352", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 659, + "trimY": 108, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_11.png": { + "ver": "1.0.4", + "uuid": "b27f06dc-217d-4b68-a747-4c1d3c27151f", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 717, + "trimY": 108, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_12.png": { + "ver": "1.0.4", + "uuid": "83d15d82-f23d-40c4-b4ef-da4ce6964fc9", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 775, + "trimY": 108, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_13.png": { + "ver": "1.0.4", + "uuid": "7cc81715-c432-4ee2-bf67-a77a4dadcd89", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 833, + "trimY": 108, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_14.png": { + "ver": "1.0.4", + "uuid": "463ae409-a045-40d1-ac44-1f2aac439065", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 891, + "trimY": 108, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_15.png": { + "ver": "1.0.4", + "uuid": "84e68a5e-f23b-4570-ac4f-d85f1eba292c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 949, + "trimY": 108, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_16.png": { + "ver": "1.0.4", + "uuid": "ce73c3ce-b543-4f9b-892c-27b76a9c84dc", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1007, + "trimY": 108, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_17.png": { + "ver": "1.0.4", + "uuid": "25280250-fab5-464c-b26e-1a5f1733aa09", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 549, + "trimY": 320, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_18.png": { + "ver": "1.0.4", + "uuid": "abf595ad-a861-482c-8f5a-43f243516a5b", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 549, + "trimY": 378, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_19.png": { + "ver": "1.0.4", + "uuid": "238ce540-4c4a-41c0-967c-32218e3dfd3c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 384, + "trimY": 732, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_20.png": { + "ver": "1.0.4", + "uuid": "0a3f1bbf-788b-4d78-b737-2ec5364fe5a4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 329, + "trimY": 826, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_21.png": { + "ver": "1.0.4", + "uuid": "c6397500-a2d9-4d68-b874-299bbc4a2173", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 384, + "trimY": 784, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_22.png": { + "ver": "1.0.4", + "uuid": "914aeb36-e7ab-4676-8016-8cf3a4fef6c6", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 384, + "trimY": 883, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_23.png": { + "ver": "1.0.4", + "uuid": "1c7a050e-c52b-4402-911d-bc2d9ffed627", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 661, + "trimY": 160, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_24.png": { + "ver": "1.0.4", + "uuid": "74eaaf1d-5de5-411d-86d4-839022712426", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 719, + "trimY": 160, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_25.png": { + "ver": "1.0.4", + "uuid": "b42fe407-2c81-4960-a697-0125815e1bc7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 777, + "trimY": 160, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_26.png": { + "ver": "1.0.4", + "uuid": "9395f625-e627-4a0a-85cb-05f9b3a99d48", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 835, + "trimY": 160, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_27.png": { + "ver": "1.0.4", + "uuid": "5805ad62-293f-4d81-ad59-ac290ba2e2d3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 893, + "trimY": 160, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_28.png": { + "ver": "1.0.4", + "uuid": "9c79bea6-dc45-4113-ace8-c7145cc889db", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 951, + "trimY": 160, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_29.png": { + "ver": "1.0.4", + "uuid": "cabc4d77-a49d-4c43-9144-01c5283fe206", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 601, + "trimY": 323, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_30.png": { + "ver": "1.0.4", + "uuid": "0514d19b-a3ad-478d-99da-fa91190148b7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 601, + "trimY": 375, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_31.png": { + "ver": "1.0.4", + "uuid": "57646810-7598-4723-b12f-5e15e8299aaa", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 602, + "trimY": 427, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_32.png": { + "ver": "1.0.4", + "uuid": "65e5cbd3-15f3-4526-a347-db55ac24bf51", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 442, + "trimY": 732, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_33.png": { + "ver": "1.0.4", + "uuid": "1555d6f4-1bdf-4b64-99b2-bb13195257f4", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 267, + "trimY": 938, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_34.png": { + "ver": "1.0.4", + "uuid": "843e335d-fdb6-4a23-9949-3c81d977fb21", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 325, + "trimY": 940, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_35.png": { + "ver": "1.0.4", + "uuid": "781f66e7-dd7f-4ff5-a38e-9423762b4b52", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 495, + "trimY": 492, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_36.png": { + "ver": "1.0.4", + "uuid": "ef990cae-899c-451f-91fd-7a42ac949534", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 606, + "trimY": 485, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_37.png": { + "ver": "1.0.4", + "uuid": "a2df488a-e91b-46b0-8c25-2ba8551ab539", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 1065, + "trimY": 108, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_38.png": { + "ver": "1.0.4", + "uuid": "6650a6e0-6ddd-42ec-af68-1a1a032e19b5", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1117, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_39.png": { + "ver": "1.0.4", + "uuid": "9a54c669-7f7d-41e4-8939-1853967d0dbf", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1175, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_40.png": { + "ver": "1.0.4", + "uuid": "da04432e-3845-465b-9ddf-ce2bd7c7174e", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1233, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_41.png": { + "ver": "1.0.4", + "uuid": "aa7a792d-22dc-4d28-8d27-52ddfcd8d147", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1291, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_42.png": { + "ver": "1.0.4", + "uuid": "ceb00ecc-d391-4b19-b9d6-e53792590c46", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1349, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_43.png": { + "ver": "1.0.4", + "uuid": "33b3fa05-9894-4393-b9ce-f819c5818bf3", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1407, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_44.png": { + "ver": "1.0.4", + "uuid": "972cc5ec-ca1c-4127-8e21-f339df92a4fd", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1465, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_45.png": { + "ver": "1.0.4", + "uuid": "3874c9de-2b47-4327-b4f8-c61d3896cefe", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1523, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_46.png": { + "ver": "1.0.4", + "uuid": "4a6f08e6-7f96-4451-8f71-7bee8cd63cf2", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1581, + "trimY": 106, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_47.png": { + "ver": "1.0.4", + "uuid": "256f3d2b-4cb9-4523-bf7a-c48380e249bb", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1118, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_48.png": { + "ver": "1.0.4", + "uuid": "4c40c070-9cba-44f9-acd6-2408f569f21c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1176, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_49.png": { + "ver": "1.0.4", + "uuid": "454bfff4-b8a1-4f90-b708-bbf295b99498", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1234, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_50.png": { + "ver": "1.0.4", + "uuid": "f0288374-f487-4870-b921-8baf851bb865", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1292, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_51.png": { + "ver": "1.0.4", + "uuid": "2fd06c6a-c3de-4b7f-bef7-1cba61c9909c", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1350, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_52.png": { + "ver": "1.0.4", + "uuid": "d4d08680-1b77-4b44-92bd-be27c03747fa", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1408, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_53.png": { + "ver": "1.0.4", + "uuid": "5a85b0ce-7a4e-4d84-b4fb-089cdff45265", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1466, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_54.png": { + "ver": "1.0.4", + "uuid": "ac515982-6ac2-462c-b186-c4468b489e39", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1524, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_55.png": { + "ver": "1.0.4", + "uuid": "92571718-c75c-4c09-9aac-b1b043bb70a7", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1582, + "trimY": 158, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_56.png": { + "ver": "1.0.4", + "uuid": "a248383c-2cf6-487e-8941-a05f6c08bc60", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 496, + "trimY": 544, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_57.png": { + "ver": "1.0.4", + "uuid": "5a9af6ac-cccc-4964-90a1-7136468d64ae", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 548, + "trimY": 548, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_58.png": { + "ver": "1.0.4", + "uuid": "c4f035dc-a01e-4b8e-a1b7-f4faf9515e99", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 606, + "trimY": 543, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_59.png": { + "ver": "1.0.4", + "uuid": "a6f9c9b4-1129-4b6a-b4c3-2a3d425c746a", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": true, + "offsetX": 0, + "offsetY": 0, + "trimX": 549, + "trimY": 600, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + }, + "SoldierFireGhost_Walking_60.png": { + "ver": "1.0.4", + "uuid": "d99d68fa-73c7-4057-98ec-9aa45864c050", + "rawTextureUuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 1087, + "trimY": 54, + "width": 58, + "height": 52, + "rawWidth": 58, + "rawHeight": 52, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "spriteType": "normal", + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png new file mode 100644 index 0000000..2592c8d Binary files /dev/null and b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png differ diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png.meta new file mode 100644 index 0000000..fc97c11 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/SoldierFireGhost.png.meta @@ -0,0 +1,12 @@ +{ + "ver": "2.3.3", + "uuid": "143f86bf-12d1-4e83-bdb9-a80ccc8b57d2", + "type": "raw", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "platformSettings": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Walking.anim b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Walking.anim new file mode 100644 index 0000000..2ccce91 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Walking.anim @@ -0,0 +1,385 @@ +{ + "__type__": "cc.AnimationClip", + "_name": "Walking", + "_objFlags": 0, + "_native": "", + "_duration": 1.0166666666666666, + "sample": 60, + "speed": 1, + "wrapMode": 2, + "curveData": { + "comps": { + "cc.Sprite": { + "spriteFrame": [ + { + "frame": 0, + "value": { + "__uuid__": "5a9af6ac-cccc-4964-90a1-7136468d64ae" + } + }, + { + "frame": 0.016666666666666666, + "value": { + "__uuid__": "e62f3718-263c-4a93-8405-55aca440180f" + } + }, + { + "frame": 0.03333333333333333, + "value": { + "__uuid__": "700a3fef-00d2-437a-a323-cc79802d76f5" + } + }, + { + "frame": 0.05, + "value": { + "__uuid__": "bf8ce5ef-5171-45ab-97dd-8c9da2dbcd5a" + } + }, + { + "frame": 0.06666666666666667, + "value": { + "__uuid__": "0894f61a-e4a0-458d-890e-aa3d60e4bf4f" + } + }, + { + "frame": 0.08333333333333333, + "value": { + "__uuid__": "1995a986-6421-427c-92fe-4e3bae551e67" + } + }, + { + "frame": 0.1, + "value": { + "__uuid__": "4ca1ce37-410d-4437-8b7a-498292e74bc6" + } + }, + { + "frame": 0.11666666666666667, + "value": { + "__uuid__": "1e23a398-6051-4a69-a71d-7ea4909da77e" + } + }, + { + "frame": 0.13333333333333333, + "value": { + "__uuid__": "ef18849a-0d4d-4bfe-a707-073958511ca6" + } + }, + { + "frame": 0.15, + "value": { + "__uuid__": "f217d368-9fc9-48cd-b635-059a7bc472a4" + } + }, + { + "frame": 0.16666666666666666, + "value": { + "__uuid__": "b312cebf-3945-40c7-a367-3bc1d6689109" + } + }, + { + "frame": 0.18333333333333332, + "value": { + "__uuid__": "476ddde6-8fd9-40cc-a789-0a08ebff5352" + } + }, + { + "frame": 0.2, + "value": { + "__uuid__": "b27f06dc-217d-4b68-a747-4c1d3c27151f" + } + }, + { + "frame": 0.21666666666666667, + "value": { + "__uuid__": "83d15d82-f23d-40c4-b4ef-da4ce6964fc9" + } + }, + { + "frame": 0.23333333333333334, + "value": { + "__uuid__": "7cc81715-c432-4ee2-bf67-a77a4dadcd89" + } + }, + { + "frame": 0.25, + "value": { + "__uuid__": "463ae409-a045-40d1-ac44-1f2aac439065" + } + }, + { + "frame": 0.26666666666666666, + "value": { + "__uuid__": "84e68a5e-f23b-4570-ac4f-d85f1eba292c" + } + }, + { + "frame": 0.2833333333333333, + "value": { + "__uuid__": "ce73c3ce-b543-4f9b-892c-27b76a9c84dc" + } + }, + { + "frame": 0.3, + "value": { + "__uuid__": "25280250-fab5-464c-b26e-1a5f1733aa09" + } + }, + { + "frame": 0.31666666666666665, + "value": { + "__uuid__": "abf595ad-a861-482c-8f5a-43f243516a5b" + } + }, + { + "frame": 0.3333333333333333, + "value": { + "__uuid__": "238ce540-4c4a-41c0-967c-32218e3dfd3c" + } + }, + { + "frame": 0.35, + "value": { + "__uuid__": "0a3f1bbf-788b-4d78-b737-2ec5364fe5a4" + } + }, + { + "frame": 0.36666666666666664, + "value": { + "__uuid__": "c6397500-a2d9-4d68-b874-299bbc4a2173" + } + }, + { + "frame": 0.38333333333333336, + "value": { + "__uuid__": "914aeb36-e7ab-4676-8016-8cf3a4fef6c6" + } + }, + { + "frame": 0.4, + "value": { + "__uuid__": "1c7a050e-c52b-4402-911d-bc2d9ffed627" + } + }, + { + "frame": 0.4166666666666667, + "value": { + "__uuid__": "74eaaf1d-5de5-411d-86d4-839022712426" + } + }, + { + "frame": 0.43333333333333335, + "value": { + "__uuid__": "b42fe407-2c81-4960-a697-0125815e1bc7" + } + }, + { + "frame": 0.45, + "value": { + "__uuid__": "9395f625-e627-4a0a-85cb-05f9b3a99d48" + } + }, + { + "frame": 0.4666666666666667, + "value": { + "__uuid__": "5805ad62-293f-4d81-ad59-ac290ba2e2d3" + } + }, + { + "frame": 0.48333333333333334, + "value": { + "__uuid__": "9c79bea6-dc45-4113-ace8-c7145cc889db" + } + }, + { + "frame": 0.5, + "value": { + "__uuid__": "cabc4d77-a49d-4c43-9144-01c5283fe206" + } + }, + { + "frame": 0.5166666666666667, + "value": { + "__uuid__": "0514d19b-a3ad-478d-99da-fa91190148b7" + } + }, + { + "frame": 0.5333333333333333, + "value": { + "__uuid__": "57646810-7598-4723-b12f-5e15e8299aaa" + } + }, + { + "frame": 0.55, + "value": { + "__uuid__": "65e5cbd3-15f3-4526-a347-db55ac24bf51" + } + }, + { + "frame": 0.5666666666666667, + "value": { + "__uuid__": "1555d6f4-1bdf-4b64-99b2-bb13195257f4" + } + }, + { + "frame": 0.5833333333333334, + "value": { + "__uuid__": "843e335d-fdb6-4a23-9949-3c81d977fb21" + } + }, + { + "frame": 0.6, + "value": { + "__uuid__": "781f66e7-dd7f-4ff5-a38e-9423762b4b52" + } + }, + { + "frame": 0.6166666666666667, + "value": { + "__uuid__": "ef990cae-899c-451f-91fd-7a42ac949534" + } + }, + { + "frame": 0.6333333333333333, + "value": { + "__uuid__": "a2df488a-e91b-46b0-8c25-2ba8551ab539" + } + }, + { + "frame": 0.65, + "value": { + "__uuid__": "6650a6e0-6ddd-42ec-af68-1a1a032e19b5" + } + }, + { + "frame": 0.6666666666666666, + "value": { + "__uuid__": "9a54c669-7f7d-41e4-8939-1853967d0dbf" + } + }, + { + "frame": 0.6833333333333333, + "value": { + "__uuid__": "da04432e-3845-465b-9ddf-ce2bd7c7174e" + } + }, + { + "frame": 0.7, + "value": { + "__uuid__": "aa7a792d-22dc-4d28-8d27-52ddfcd8d147" + } + }, + { + "frame": 0.7166666666666667, + "value": { + "__uuid__": "ceb00ecc-d391-4b19-b9d6-e53792590c46" + } + }, + { + "frame": 0.7333333333333333, + "value": { + "__uuid__": "33b3fa05-9894-4393-b9ce-f819c5818bf3" + } + }, + { + "frame": 0.75, + "value": { + "__uuid__": "972cc5ec-ca1c-4127-8e21-f339df92a4fd" + } + }, + { + "frame": 0.7666666666666667, + "value": { + "__uuid__": "3874c9de-2b47-4327-b4f8-c61d3896cefe" + } + }, + { + "frame": 0.7833333333333333, + "value": { + "__uuid__": "4a6f08e6-7f96-4451-8f71-7bee8cd63cf2" + } + }, + { + "frame": 0.8, + "value": { + "__uuid__": "256f3d2b-4cb9-4523-bf7a-c48380e249bb" + } + }, + { + "frame": 0.8166666666666667, + "value": { + "__uuid__": "4c40c070-9cba-44f9-acd6-2408f569f21c" + } + }, + { + "frame": 0.8333333333333334, + "value": { + "__uuid__": "454bfff4-b8a1-4f90-b708-bbf295b99498" + } + }, + { + "frame": 0.85, + "value": { + "__uuid__": "f0288374-f487-4870-b921-8baf851bb865" + } + }, + { + "frame": 0.8666666666666667, + "value": { + "__uuid__": "2fd06c6a-c3de-4b7f-bef7-1cba61c9909c" + } + }, + { + "frame": 0.8833333333333333, + "value": { + "__uuid__": "d4d08680-1b77-4b44-92bd-be27c03747fa" + } + }, + { + "frame": 0.9, + "value": { + "__uuid__": "5a85b0ce-7a4e-4d84-b4fb-089cdff45265" + } + }, + { + "frame": 0.9166666666666666, + "value": { + "__uuid__": "ac515982-6ac2-462c-b186-c4468b489e39" + } + }, + { + "frame": 0.9333333333333333, + "value": { + "__uuid__": "92571718-c75c-4c09-9aac-b1b043bb70a7" + } + }, + { + "frame": 0.95, + "value": { + "__uuid__": "a248383c-2cf6-487e-8941-a05f6c08bc60" + } + }, + { + "frame": 0.9666666666666667, + "value": { + "__uuid__": "c4f035dc-a01e-4b8e-a1b7-f4faf9515e99" + } + }, + { + "frame": 0.9833333333333333, + "value": { + "__uuid__": "a6f9c9b4-1129-4b6a-b4c3-2a3d425c746a" + } + }, + { + "frame": 1, + "value": { + "__uuid__": "d99d68fa-73c7-4057-98ec-9aa45864c050" + } + } + ] + } + } + }, + "events": [] +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Walking.anim.meta b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Walking.anim.meta new file mode 100644 index 0000000..8509b16 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/frameAnim/Walking.anim.meta @@ -0,0 +1,5 @@ +{ + "ver": "2.1.0", + "uuid": "f51bb583-0010-48f3-a6a1-451a78ac2d65", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/ControlledCharacter.prefab b/frontend/assets/resources/prefabs/ControlledCharacter.prefab index 32f32c8..f3f37e3 100644 --- a/frontend/assets/resources/prefabs/ControlledCharacter.prefab +++ b/frontend/assets/resources/prefabs/ControlledCharacter.prefab @@ -33,14 +33,14 @@ "_active": true, "_components": [ { - "__id__": 22 + "__id__": 20 }, { - "__id__": 23 + "__id__": 21 } ], "_prefab": { - "__id__": 24 + "__id__": 22 }, "_opacity": 255, "_color": { @@ -490,15 +490,12 @@ }, { "__id__": 15 - }, - { - "__id__": 18 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 21 + "__id__": 19 }, "_opacity": 255, "_color": { @@ -549,7 +546,7 @@ }, { "__type__": "cc.Node", - "_name": "SoldierElf", + "_name": "SoldierWaterGhost", "_objFlags": 0, "_parent": { "__id__": 11 @@ -624,13 +621,13 @@ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" } ], - "_armatureName": "SoldierElf", + "_armatureName": "SoldierWaterGhost", "_animationName": "Idle1", "_preCacheMode": 0, "_cacheMode": 0, "playTimes": -1, "premultipliedAlpha": false, - "_armatureKey": "affcd973-4743-48e5-9bcd-339180a6101b#24d7bb8f-577c-4e5d-b730-56613ca8685d", + "_armatureKey": "2ae76843-1f61-48cf-bbfb-384c0dcf77e1#e9e703e9-3589-4713-b889-28b23406d220", "_accTime": 0, "_playCount": 0, "_frameCache": null, @@ -638,17 +635,17 @@ "_playing": false, "_armatureCache": null, "_N$dragonAsset": { - "__uuid__": "affcd973-4743-48e5-9bcd-339180a6101b" + "__uuid__": "2ae76843-1f61-48cf-bbfb-384c0dcf77e1" }, "_N$dragonAtlasAsset": { - "__uuid__": "24d7bb8f-577c-4e5d-b730-56613ca8685d" + "__uuid__": "e9e703e9-3589-4713-b889-28b23406d220" }, "_N$_defaultArmatureIndex": 0, - "_N$_animationIndex": 1, + "_N$_animationIndex": 8, "_N$_defaultCacheMode": 0, "_N$timeScale": 1, "_N$debugBones": false, - "_N$enableBatch": true, + "_N$enableBatch": false, "_id": "" }, { @@ -659,7 +656,7 @@ "asset": { "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" }, - "fileId": "3fs20Yd8dIO68/1Wx2oVLh", + "fileId": "42Rmp/YOdMOYWzJwr3ET1h", "sync": false }, { @@ -674,10 +671,13 @@ "_components": [ { "__id__": 16 + }, + { + "__id__": 17 } ], "_prefab": { - "__id__": 17 + "__id__": 18 }, "_opacity": 255, "_color": { @@ -689,8 +689,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 0, - "height": 0 + "width": 1425, + "height": 1024 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -727,7 +727,33 @@ "_id": "" }, { - "__type__": "dragonBones.ArmatureDisplay", + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_defaultClip": null, + "_clips": [ + { + "__uuid__": "252b321f-81f4-485c-85bd-ea44d298cb76" + }, + { + "__uuid__": "f51bb583-0010-48f3-a6a1-451a78ac2d65" + }, + { + "__uuid__": "c738236a-0702-45f8-aa38-99457b051997" + }, + { + "__uuid__": "c69bcceb-d7d1-4e33-9623-e2a374a0a6b6" + } + ], + "playOnLoad": false, + "_id": "" + }, + { + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "node": { @@ -739,146 +765,23 @@ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" } ], - "_armatureName": "SoldierFireGhost", - "_animationName": "Idle1", - "_preCacheMode": 0, - "_cacheMode": 0, - "playTimes": -1, - "premultipliedAlpha": false, - "_armatureKey": "36230012-8df3-4e85-afad-76ec47d0e4d7#4a9187d5-a9ad-4464-a03c-d2f3cc277051", - "_accTime": 0, - "_playCount": 0, - "_frameCache": null, - "_curFrame": null, - "_playing": false, - "_armatureCache": null, - "_N$dragonAsset": { - "__uuid__": "36230012-8df3-4e85-afad-76ec47d0e4d7" - }, - "_N$dragonAtlasAsset": { - "__uuid__": "4a9187d5-a9ad-4464-a03c-d2f3cc277051" - }, - "_N$_defaultArmatureIndex": 0, - "_N$_animationIndex": 8, - "_N$_defaultCacheMode": 0, - "_N$timeScale": 1, - "_N$debugBones": false, - "_N$enableBatch": true, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" - }, - "fileId": "a8ZUEyoP1Ec5azSkL7Z/9h", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "SoldierWaterGhost", - "_objFlags": 0, - "_parent": { - "__id__": 11 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 19 - } - ], - "_prefab": { - "__id__": 20 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", "x": 0, - "y": 0, - "z": 0 + "y": 0 }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "dragonBones.ArmatureDisplay", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 18 + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "145769c8-a259-42bc-8cce-6e035f493c70" }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_armatureName": "SoldierWaterGhost", - "_animationName": "Idle1", - "_preCacheMode": 0, - "_cacheMode": 0, - "playTimes": -1, - "premultipliedAlpha": false, - "_armatureKey": "a9d7bbc2-134b-4eb4-ba16-6541f3e51e06#e9e703e9-3589-4713-b889-28b23406d220", - "_accTime": 0, - "_playCount": 0, - "_frameCache": null, - "_curFrame": null, - "_playing": false, - "_armatureCache": null, - "_N$dragonAsset": { - "__uuid__": "a9d7bbc2-134b-4eb4-ba16-6541f3e51e06" - }, - "_N$dragonAtlasAsset": { - "__uuid__": "e9e703e9-3589-4713-b889-28b23406d220" - }, - "_N$_defaultArmatureIndex": 0, - "_N$_animationIndex": 8, - "_N$_defaultCacheMode": 0, - "_N$timeScale": 1, - "_N$debugBones": false, - "_N$enableBatch": true, "_id": "" }, { @@ -889,7 +792,7 @@ "asset": { "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" }, - "fileId": "42Rmp/YOdMOYWzJwr3ET1h", + "fileId": "4c+Ci1MGpP47N3wJ0ujhEm", "sync": false }, { diff --git a/frontend/assets/resources/prefabs/SoldierFireGhost.prefab b/frontend/assets/resources/prefabs/SoldierFireGhost.prefab new file mode 100644 index 0000000..5243ff9 --- /dev/null +++ b/frontend/assets/resources/prefabs/SoldierFireGhost.prefab @@ -0,0 +1,151 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "SoldierFireGhost", + "_objFlags": 0, + "_parent": null, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 2 + }, + { + "__id__": 3 + } + ], + "_prefab": { + "__id__": 4 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1425, + "height": 1024 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_defaultClip": null, + "_clips": [ + { + "__uuid__": "252b321f-81f4-485c-85bd-ea44d298cb76" + }, + null, + null, + null, + { + "__uuid__": "c738236a-0702-45f8-aa38-99457b051997" + }, + { + "__uuid__": "f51bb583-0010-48f3-a6a1-451a78ac2d65" + }, + { + "__uuid__": "c69bcceb-d7d1-4e33-9623-e2a374a0a6b6" + } + ], + "playOnLoad": false, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "145769c8-a259-42bc-8cce-6e035f493c70" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "44k8wsxglPsJSrMCX58Yve", + "sync": false + } +] \ No newline at end of file diff --git a/frontend/assets/resources/prefabs/SoldierFireGhost.prefab.meta b/frontend/assets/resources/prefabs/SoldierFireGhost.prefab.meta new file mode 100644 index 0000000..3000668 --- /dev/null +++ b/frontend/assets/resources/prefabs/SoldierFireGhost.prefab.meta @@ -0,0 +1,8 @@ +{ + "ver": "1.2.5", + "uuid": "e3fc2487-17d1-4ff9-ae1f-38e974509077", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/scenes/default_map.fire b/frontend/assets/scenes/default_map.fire index 547ef92..413cc5b 100644 --- a/frontend/assets/scenes/default_map.fire +++ b/frontend/assets/scenes/default_map.fire @@ -72,14 +72,17 @@ "__id__": 3 }, { - "__id__": 5 - }, - { - "__id__": 10 + "__id__": 8 } ], "_active": true, "_components": [ + { + "__id__": 29 + }, + { + "__id__": 30 + }, { "__id__": 31 }, @@ -88,12 +91,6 @@ }, { "__id__": 33 - }, - { - "__id__": 34 - }, - { - "__id__": 35 } ], "_prefab": null, @@ -144,79 +141,6 @@ "groupIndex": 0, "_id": "daDUxCjRFEHak7fx7LvgSJ" }, - { - "__type__": "cc.Node", - "_name": "BackgroundMap", - "_objFlags": 0, - "_parent": { - "__id__": 2 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 4 - } - ], - "_prefab": null, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "e5aYJXDGZJFIN3+Qa0Msap" - }, - { - "__type__": "cc.TiledMap", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 3 - }, - "_enabled": true, - "_tmxFile": null, - "_id": "19rX2IPNVFHLVxuIoHEHCh" - }, { "__type__": "cc.Node", "_name": "Map", @@ -228,13 +152,13 @@ "_active": true, "_components": [ { - "__id__": 6 + "__id__": 4 }, { - "__id__": 7 + "__id__": 5 }, { - "__id__": 30 + "__id__": 28 } ], "_prefab": null, @@ -248,8 +172,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 3200, - "height": 3200 + "width": 2048, + "height": 2048 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -267,8 +191,8 @@ 0, 0, 1, - 1, - 1, + 1.5, + 1.5, 1 ] }, @@ -290,7 +214,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 5 + "__id__": 3 }, "_enabled": true, "_tmxFile": null, @@ -301,7 +225,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 5 + "__id__": 3 }, "_enabled": true, "canvasNode": { @@ -311,7 +235,7 @@ "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" }, "joystickInputControllerNode": { - "__id__": 8 + "__id__": 6 }, "confirmLogoutPrefab": { "__uuid__": "8e8c1a65-623d-42ba-97a7-820ce518ea11" @@ -320,10 +244,10 @@ "__uuid__": "670b477e-61a1-4778-879b-35913f7c79d2" }, "boundRoomIdLabel": { - "__id__": 17 + "__id__": 15 }, "countdownLabel": { - "__id__": 23 + "__id__": 21 }, "resultPanelPrefab": { "__uuid__": "c4cfe3bd-c59e-4d5b-95cb-c933b120e184" @@ -351,17 +275,17 @@ "_name": "JoystickContainer", "_objFlags": 0, "_parent": { - "__id__": 9 + "__id__": 7 }, "_children": [ { - "__id__": 24 + "__id__": 22 } ], "_active": true, "_components": [ { - "__id__": 29 + "__id__": 27 } ], "_prefab": null, @@ -417,17 +341,17 @@ "_name": "WidgetsAboveAll", "_objFlags": 0, "_parent": { - "__id__": 10 + "__id__": 8 }, "_children": [ { - "__id__": 12 + "__id__": 10 }, { - "__id__": 8 + "__id__": 6 }, { - "__id__": 22 + "__id__": 20 } ], "_active": true, @@ -489,13 +413,13 @@ }, "_children": [ { - "__id__": 9 + "__id__": 7 } ], "_active": true, "_components": [ { - "__id__": 11 + "__id__": 9 } ], "_prefab": null, @@ -523,7 +447,7 @@ "array": [ 0, 0, - 210.23252687912068, + 216.50635094610968, 0, 0, 0, @@ -551,7 +475,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 10 + "__id__": 8 }, "_enabled": true, "_cullingMask": 4294967295, @@ -587,20 +511,20 @@ "_name": "DebugInfo", "_objFlags": 0, "_parent": { - "__id__": 9 + "__id__": 7 }, "_children": [ { - "__id__": 13 + "__id__": 11 } ], "_active": true, "_components": [ { - "__id__": 20 + "__id__": 18 }, { - "__id__": 21 + "__id__": 19 } ], "_prefab": null, @@ -656,23 +580,23 @@ "_name": "RoomIdIndicator", "_objFlags": 0, "_parent": { - "__id__": 12 + "__id__": 10 }, "_children": [ { - "__id__": 14 + "__id__": 12 }, { - "__id__": 16 + "__id__": 14 } ], "_active": false, "_components": [ { - "__id__": 18 + "__id__": 16 }, { - "__id__": 19 + "__id__": 17 } ], "_prefab": null, @@ -728,13 +652,13 @@ "_name": "label", "_objFlags": 0, "_parent": { - "__id__": 13 + "__id__": 11 }, "_children": [], "_active": true, "_components": [ { - "__id__": 15 + "__id__": 13 } ], "_prefab": null, @@ -790,7 +714,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 14 + "__id__": 12 }, "_enabled": true, "_materials": [], @@ -818,13 +742,13 @@ "_name": "BoundRoomIdLabel", "_objFlags": 0, "_parent": { - "__id__": 13 + "__id__": 11 }, "_children": [], "_active": true, "_components": [ { - "__id__": 17 + "__id__": 15 } ], "_prefab": null, @@ -880,7 +804,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 16 + "__id__": 14 }, "_enabled": true, "_materials": [], @@ -908,7 +832,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 13 + "__id__": 11 }, "_enabled": true, "_layoutSize": { @@ -941,7 +865,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 13 + "__id__": 11 }, "_enabled": true, "_materials": [], @@ -971,7 +895,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 12 + "__id__": 10 }, "_enabled": true, "_materials": [], @@ -997,7 +921,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 12 + "__id__": 10 }, "_enabled": true, "_layoutSize": { @@ -1030,13 +954,13 @@ "_name": "CountdownSeconds", "_objFlags": 0, "_parent": { - "__id__": 9 + "__id__": 7 }, "_children": [], "_active": true, "_components": [ { - "__id__": 23 + "__id__": 21 } ], "_prefab": null, @@ -1092,7 +1016,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 22 + "__id__": 20 }, "_enabled": true, "_materials": [ @@ -1122,20 +1046,20 @@ "_name": "JoystickBG", "_objFlags": 0, "_parent": { - "__id__": 8 + "__id__": 6 }, "_children": [ { - "__id__": 25 + "__id__": 23 } ], "_active": true, "_components": [ { - "__id__": 27 + "__id__": 25 }, { - "__id__": 28 + "__id__": 26 } ], "_prefab": null, @@ -1191,13 +1115,13 @@ "_name": "Joystick", "_objFlags": 0, "_parent": { - "__id__": 24 + "__id__": 22 }, "_children": [], "_active": true, "_components": [ { - "__id__": 26 + "__id__": 24 } ], "_prefab": null, @@ -1253,7 +1177,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 25 + "__id__": 23 }, "_enabled": true, "_materials": [ @@ -1287,7 +1211,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 24 + "__id__": 22 }, "_enabled": true, "_materials": [ @@ -1321,7 +1245,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 24 + "__id__": 22 }, "_enabled": true, "alignMode": 0, @@ -1348,7 +1272,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 8 + "__id__": 6 }, "_enabled": true, "alignMode": 0, @@ -1375,7 +1299,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 5 + "__id__": 3 }, "_enabled": true, "BGMEffect": { @@ -1394,7 +1318,7 @@ "__uuid__": "261d1d7d-a5cc-4cb7-a737-194427055fd4" }, "mapNode": { - "__id__": 5 + "__id__": 3 }, "_id": "3crA1nz5xPSLAnCSLQIPOq" }, @@ -1424,7 +1348,7 @@ }, "_enabled": true, "map": { - "__id__": 5 + "__id__": 3 }, "_id": "84o2sgpN1NRqlN9x7mSzBj" }, @@ -1437,7 +1361,7 @@ }, "_enabled": true, "mapNode": { - "__id__": 5 + "__id__": 3 }, "speed": 5000, "_id": "76ImpM7XtPSbiLHDXdsJa+" @@ -1478,16 +1402,16 @@ }, "_enabled": true, "translationListenerNode": { - "__id__": 8 + "__id__": 6 }, "zoomingListenerNode": { - "__id__": 5 + "__id__": 3 }, "stickhead": { - "__id__": 25 + "__id__": 23 }, "base": { - "__id__": 24 + "__id__": 22 }, "joyStickEps": 0.1, "magicLeanLowerBound": 0.414, @@ -1503,7 +1427,7 @@ "__id__": 2 }, "mapNode": { - "__id__": 5 + "__id__": 3 }, "linearMovingEps": 0.1, "scaleByEps": 0.0375, diff --git a/frontend/assets/scenes/login.fire b/frontend/assets/scenes/login.fire index 76a6bfa..044855e 100644 --- a/frontend/assets/scenes/login.fire +++ b/frontend/assets/scenes/login.fire @@ -440,7 +440,7 @@ "array": [ 0, 0, - 216.50635094610968, + 210.5241291124452, 0, 0, 0, diff --git a/frontend/assets/scenes/offline_map_1.fire b/frontend/assets/scenes/offline_map_1.fire index 4ce7f71..87a50f6 100644 --- a/frontend/assets/scenes/offline_map_1.fire +++ b/frontend/assets/scenes/offline_map_1.fire @@ -191,8 +191,8 @@ 0, 0, 1, - 1, - 1, + 2, + 2, 1 ] }, @@ -454,7 +454,7 @@ "array": [ 0, 0, - 216.50635094610968, + 210.5241291124452, 0, 0, 0, diff --git a/frontend/assets/scripts/AttackingCharacter.js b/frontend/assets/scripts/AttackingCharacter.js index ee5c553..d0c8c69 100644 --- a/frontend/assets/scripts/AttackingCharacter.js +++ b/frontend/assets/scripts/AttackingCharacter.js @@ -12,8 +12,14 @@ for (let k in window.ATK_CHARACTER_STATE) { window.ATK_CHARACTER_STATE_ARR.push(window.ATK_CHARACTER_STATE[k]); } +window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET = new Set(); +window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.add(window.ATK_CHARACTER_STATE.Idle1[0]); +window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.add(window.ATK_CHARACTER_STATE.Walking[0]); + /* -Kindly note that the use of dragonBones anim is an informed choice for the feasibility of "gotoAndPlayByFrame", which is a required feature by "Map.rollbackAndChase". You might find that "cc.Animation" -- the traditional frame animation -- can also suffice this requirement, yet if we want to develop 3D frontend in the future, working with skeletal animation will make a smoother transition. +Kindly note that the use of dragonBones anim is an informed choice for the feasibility of "gotoAndPlayByFrame", which is a required feature by "Map.rollbackAndChase". You might find that "cc.Animation" -- the traditional frame anim -- can also suffice this requirement, yet if we want to develop 3D frontend in the future, working with skeletal anim will make a smoother transition. + +Moreover, frame anim doesn't support "compositie playing" and consumes more memory (yet less CPU) than a same skeletal anim, thus should only be used properly. I've also spent sometime in extending "ccc wrapped dragoneBones.ArmatureDisplay" for enabling "gotoAndPlayByFrame" in CACHE mode (in REALTIME mode it's just the same as what's done here), but the debugging is an unexpected brainteaser -- not worth the time. */ @@ -35,18 +41,22 @@ cc.Class({ setSpecies(speciesName) { this.speciesName = speciesName; - this.effAnimNode = this.animNode.getChildByName(this.speciesName); - this.animComp = this.effAnimNode.getComponent(dragonBones.ArmatureDisplay); - this.animComp.playAnimation(ATK_CHARACTER_STATE.Idle1[1]); // [WARNING] This is the only exception ccc's wrapper is used! - this.effAnimNode.active = true; }, onLoad() { BaseCharacter.prototype.onLoad.call(this); + this.effAnimNode = this.animNode.getChildByName(this.speciesName); + this.animComp = this.effAnimNode.getComponent(dragonBones.ArmatureDisplay); + if (!this.animComp) { + this.animComp = this.effAnimNode.getComponent(cc.Animation); + this.effAnimNode.anchorY = 0.0; // Otherwise the frame anim will show with an incorrect y-offset even if the collider boundaries are all correct! + } + this.effAnimNode.active = true; }, updateCharacterAnim(rdfPlayer, prevRdfPlayer, forceAnimSwitch) { - const underlyingAnimationCtrl = this.animComp._armature.animation; // ALWAYS use the dragonBones api instead of ccc's wrapper! + // As this function might be called after many frames of a rollback, it's possible that the playing animation was predicted, different from "prevRdfPlayer.characterState" but same as "newCharacterState". More granular checks are needed to determine whether we should interrupt the playing animation. + // Update directions if (this.animComp && this.animComp.node) { if (0 > rdfPlayer.dirX) { @@ -56,38 +66,34 @@ cc.Class({ } } - // Update per character state let newCharacterState = rdfPlayer.characterState; - let prevCharacterState = (null == prevRdfPlayer ? window.ATK_CHARACTER_STATE.Idle1[0] : prevRdfPlayer.characterState); const newAnimName = window.ATK_CHARACTER_STATE_ARR[newCharacterState][1]; - const playingAnimName = underlyingAnimationCtrl.lastAnimationName; - const isPlaying = underlyingAnimationCtrl.isPlaying; + let playingAnimName = null; + let underlyingAnimationCtrl = null; - // As this function might be called after many frames of a rollback, it's possible that the playing animation was predicted, different from "prevCharacterState" but same as "newCharacterState". More granular checks are needed to determine whether we should interrupt the playing animation. - if (newCharacterState != prevCharacterState) { - if (newAnimName == playingAnimName) { - if (ATK_CHARACTER_STATE.Idle1[0] == newCharacterState || ATK_CHARACTER_STATE.Walking[0] == newCharacterState) { - // No need to interrupt - // console.warn(`JoinIndex=${rdfPlayer.joinIndex}, not interrupting ${newAnimName} while the playing anim is also ${playingAnimName}, player rdf changed from: ${null == prevRdfPlayer ? null : JSON.stringify(prevRdfPlayer)}, , to: ${JSON.stringify(rdfPlayer)}`); - return; - } - } - this._interruptPlayingAnimAndPlayNewAnim(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName, underlyingAnimationCtrl); + if (this.animComp instanceof dragonBones.ArmatureDisplay) { + underlyingAnimationCtrl = this.animComp._armature.animation; // ALWAYS use the dragonBones api instead of ccc's wrapper! + playingAnimName = underlyingAnimationCtrl.lastAnimationName; } else { - // newCharacterState == prevCharacterState - if (newAnimName != playingAnimName) { - // the playing animation was falsely predicted - this._interruptPlayingAnimAndPlayNewAnim(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName, underlyingAnimationCtrl); - } else { - if (!(ATK_CHARACTER_STATE.Idle1[0] == newCharacterState || ATK_CHARACTER_STATE.Walking[0] == newCharacterState)) { - // yet there's still a chance that the playing anim is not put at the current frame - this._interruptPlayingAnimAndPlayNewAnim(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName, underlyingAnimationCtrl); - } - } + underlyingAnimationCtrl = this.animComp.currentClip; + playingAnimName = (!underlyingAnimationCtrl ? null : underlyingAnimationCtrl.name); + } + + // It turns out that "prevRdfPlayer.characterState" is not useful in this function :) + if (newAnimName == playingAnimName && window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.has(newCharacterState)) { + // No need to interrupt + // console.warn(`JoinIndex=${rdfPlayer.joinIndex}, not interrupting ${newAnimName} while the playing anim is also ${playingAnimName}, player rdf changed from: ${null == prevRdfPlayer ? null : JSON.stringify(prevRdfPlayer)}, , to: ${JSON.stringify(rdfPlayer)}`); + return; + } + + if (this.animComp instanceof dragonBones.ArmatureDisplay) { + this._interruptPlayingAnimAndPlayNewAnimDragonBones(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName, underlyingAnimationCtrl); + } else { + this._interruptPlayingAnimAndPlayNewAnimFrameAnim(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName); } }, - _interruptPlayingAnimAndPlayNewAnim(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName, underlyingAnimationCtrl) { + _interruptPlayingAnimAndPlayNewAnimDragonBones(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName, underlyingAnimationCtrl) { if (ATK_CHARACTER_STATE.Idle1[0] == newCharacterState || ATK_CHARACTER_STATE.Walking[0] == newCharacterState) { // No "framesToRecover" // console.warn(`JoinIndex=${rdfPlayer.joinIndex}, playing new ${newAnimName} from the beginning: while the playing anim is ${playAnimation}, player rdf changed from: ${null == prevRdfPlayer ? null : JSON.stringify(prevRdfPlayer)}, , to: ${JSON.stringify(rdfPlayer)}`); @@ -95,12 +101,29 @@ cc.Class({ } else { const animationData = underlyingAnimationCtrl._animations[newAnimName]; let fromAnimFrame = (animationData.frameCount - rdfPlayer.framesToRecover); - if (fromAnimFrame > 0) { - } else if (fromAnimFrame < 0) { + if (fromAnimFrame < 0) { // For Atk1 or Atk2, it's possible that the "meleeBullet.recoveryFrames" is configured to be slightly larger than corresponding animation duration frames fromAnimFrame = 0; } underlyingAnimationCtrl.gotoAndPlayByFrame(newAnimName, fromAnimFrame, 1); } }, + + _interruptPlayingAnimAndPlayNewAnimFrameAnim(rdfPlayer, prevRdfPlayer, newCharacterState, newAnimName) { + if (window.ATK_CHARACTER_STATE_INTERRUPT_WAIVE_SET.has(newCharacterState)) { + // No "framesToRecover" + // console.warn(`JoinIndex=${rdfPlayer.joinIndex}, playing new ${newAnimName} from the beginning: while the playing anim is ${playAnimation}, player rdf changed from: ${null == prevRdfPlayer ? null : JSON.stringify(prevRdfPlayer)}, , to: ${JSON.stringify(rdfPlayer)}`); + this.animComp.play(newAnimName, 0); + return; + } + // The "playTimes" counterpart is managed by each "cc.AnimationClip.wrapMode", already preset in the editor. + const targetClip = this.animComp.getClips()[newCharacterState]; // The clips follow the exact order in ATK_CHARACTER_STATE + let fromTime = (targetClip.duration - rdfPlayer.framesToRecover / targetClip.sample); // TODO: Anyway to avoid using division here? + if (fromTime < 0) { + // For Atk1 or Atk2, it's possible that the "meleeBullet.recoveryFrames" is configured to be slightly larger than corresponding animation duration frames + fromTime = 0; + } + this.animComp.play(newAnimName, fromTime); + }, + }); diff --git a/frontend/assets/scripts/Map.js b/frontend/assets/scripts/Map.js index a9d8bd2..cf56c94 100644 --- a/frontend/assets/scripts/Map.js +++ b/frontend/assets/scripts/Map.js @@ -761,9 +761,9 @@ cc.Class({ const [wx, wy] = self.virtualGridToWorldPos(vx, vy); newPlayerNode.setPosition(wx, wy); playerScriptIns.mapNode = self.node; - const d = playerDownsyncInfo.colliderRadius * 2, - [x0, y0] = self.virtualGridToPolygonColliderAnchorPos(vx, vy, playerDownsyncInfo.colliderRadius, playerDownsyncInfo.colliderRadius), - pts = [[0, 0], [d, 0], [d, d], [0, d]]; + const colliderWidth = playerDownsyncInfo.colliderRadius * 2, colliderHeight = playerDownsyncInfo.colliderRadius * 3; + const [x0, y0] = self.virtualGridToPolygonColliderAnchorPos(vx, vy, colliderWidth, colliderHeight), + pts = [[0, 0], [colliderWidth, 0], [colliderWidth, colliderHeight], [0, colliderHeight]]; const newPlayerCollider = self.collisionSys.createPolygon(x0, y0, pts); const collisionPlayerIndex = self.collisionPlayerIndexPrefix + joinIndex; diff --git a/frontend/assets/scripts/OfflineMap.js b/frontend/assets/scripts/OfflineMap.js index 1fd1b88..3c07076 100644 --- a/frontend/assets/scripts/OfflineMap.js +++ b/frontend/assets/scripts/OfflineMap.js @@ -42,25 +42,25 @@ cc.Class({ self.meleeSkillConfig = { 1: { // for offender - startupFrames: 23, + startupFrames: 10, activeFrames: 3, - recoveryFrames: 61, // usually but not always "startupFrames+activeFrames", I hereby set it to be 1 frame more than the actual animation to avoid critical transition, i.e. when the animation is 1 frame from ending but "rdfPlayer.framesToRecover" is already counted 0 and the player triggers an other same attack, making an effective bullet trigger but no animation is played due to same animName is still playing - recoveryFramesOnBlock: 61, - recoveryFramesOnHit: 61, + recoveryFrames: 34, // usually but not always "startupFrames+activeFrames", I hereby set it to be 1 frame more than the actual animation to avoid critical transition, i.e. when the animation is 1 frame from ending but "rdfPlayer.framesToRecover" is already counted 0 and the player triggers an other same attack, making an effective bullet trigger but no animation is played due to same animName is still playing + recoveryFramesOnBlock: 34, + recoveryFramesOnHit: 34, moveforward: { x: 0, y: 0, }, hitboxOffset: 12.0, // should be about the radius of the PlayerCollider hitboxSize: { - x: 45.0, + x: 23.0, y: 32.0, }, // for defender hitStunFrames: 18, blockStunFrames: 9, - pushback: 11.0, + pushback: 8.0, releaseTriggerType: 1, // 1: rising-edge, 2: falling-edge damage: 5 } @@ -151,7 +151,7 @@ cc.Class({ id: 11, joinIndex: 2, virtualGridX: 80 * self.worldToVirtualGridRatio, - virtualGridY: 40 * self.worldToVirtualGridRatio, + virtualGridY: 0 * self.worldToVirtualGridRatio, speed: 1 * self.worldToVirtualGridRatio, colliderRadius: 12, characterState: window.ATK_CHARACTER_STATE.Idle1[0], @@ -162,7 +162,7 @@ cc.Class({ } }); self.selfPlayerInfo = { - id: 10 + id: 11 }; self._initPlayerRichInfoDict(startRdf.players); self.onRoomDownsyncFrame(startRdf);