diff --git a/battle_srv/models/room.go b/battle_srv/models/room.go index b25d6ad..898db7b 100644 --- a/battle_srv/models/room.go +++ b/battle_srv/models/room.go @@ -345,13 +345,6 @@ func (pR *Room) ConvertToLastUsedRenderFrameId(inputFrameId int32, inputDelayFra return ((inputFrameId << pR.InputScaleFrames) + inputDelayFrames + (1 << pR.InputScaleFrames) - 1) } -func (pR *Room) EncodeUpsyncCmd(upsyncCmd *InputFrameUpsync) uint64 { - var ret uint64 = 0 - // There're 13 possible directions, occupying the first 4 bits, no need to shift - ret += uint64(upsyncCmd.EncodedDir) - return ret -} - func (pR *Room) RenderFrameBufferString() string { return fmt.Sprintf("{renderFrameId: %d, stRenderFrameId: %d, edRenderFrameId: %d, lastAllConfirmedRenderFrameId: %d}", pR.RenderFrameId, pR.RenderFrameBuffer.StFrameId, pR.RenderFrameBuffer.EdFrameId, pR.CurDynamicsRenderFrameId) } @@ -1073,7 +1066,7 @@ func (pR *Room) prefabInputFrameDownsync(inputFrameId int32) *InputFrameDownsync ConfirmedList: uint64(0), } } else { - tmp := pR.InputsBuffer.GetByFrameId(inputFrameId - 1) + tmp := pR.InputsBuffer.GetByFrameId(inputFrameId - 1) // There's no need for the backend to find the "lastAllConfirmed inputs" for prefabbing, either "BackendDynamicsEnabled" is true or false if nil == tmp { panic(fmt.Sprintf("Error prefabbing inputFrameDownsync: roomId=%v, InputsBuffer=%v", pR.Id, pR.InputsBufferString(false))) } @@ -1114,7 +1107,7 @@ func (pR *Room) markConfirmationIfApplicable() { } inputFrameUpsync := tmp.(*InputFrameUpsync) indiceInJoinIndexBooleanArr := uint32(player.JoinIndex - 1) - inputFrameDownsync.InputList[indiceInJoinIndexBooleanArr] = pR.EncodeUpsyncCmd(inputFrameUpsync) + inputFrameDownsync.InputList[indiceInJoinIndexBooleanArr] = inputFrameUpsync.Encoded inputFrameDownsync.ConfirmedList |= (1 << indiceInJoinIndexBooleanArr) } @@ -1239,9 +1232,8 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF joinIndex := player.JoinIndex effPushbacks[joinIndex-1].X, effPushbacks[joinIndex-1].Y = float64(0), float64(0) currPlayerDownsync := currRenderFrame.Players[playerId] - encodedInput := inputList[joinIndex-1] - decodedInput := DIRECTION_DECODER[encodedInput] - proposedVirtualGridDx, proposedVirtualGridDy := (decodedInput[0] + decodedInput[0]*currPlayerDownsync.Speed), (decodedInput[1] + decodedInput[1]*currPlayerDownsync.Speed) + decodedInput := pR.decodeInput(inputList[joinIndex-1]) + proposedVirtualGridDx, proposedVirtualGridDy := (decodedInput.Dx + decodedInput.Dx*currPlayerDownsync.Speed), (decodedInput.Dy + decodedInput.Dy*currPlayerDownsync.Speed) newVx, newVy := (currPlayerDownsync.VirtualGridX + proposedVirtualGridDx), (currPlayerDownsync.VirtualGridY + proposedVirtualGridDy) // Reset playerCollider position from the "virtual grid position" collisionPlayerIndex := COLLISION_PLAYER_INDEX_PREFIX + joinIndex @@ -1251,10 +1243,10 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF // Update in the collision system playerCollider.Update() - if 0 < encodedInput { + if 0 != decodedInput.Dx || 0 != decodedInput.Dy { Logger.Debug(fmt.Sprintf("Checking collision for playerId=%v: virtual (%d, %d) -> (%d, %d), now playerShape=%v", playerId, currPlayerDownsync.VirtualGridX, currPlayerDownsync.VirtualGridY, newVx, newVy, ConvexPolygonStr(playerCollider.Shape.(*resolv.ConvexPolygon)))) - nextRenderFramePlayers[playerId].Dir.Dx = decodedInput[0] - nextRenderFramePlayers[playerId].Dir.Dy = decodedInput[1] + nextRenderFramePlayers[playerId].Dir.Dx = decodedInput.Dx + nextRenderFramePlayers[playerId].Dir.Dy = decodedInput.Dy } } @@ -1295,6 +1287,16 @@ func (pR *Room) applyInputFrameDownsyncDynamicsOnSingleRenderFrame(delayedInputF return toRet } +func (pR *Room) decodeInput(encodedInput uint64) *InputFrameDecoded { + encodedDirection := (encodedInput & 0xf) + btnALevel := int32((encodedInput >> 4) & 1) + return &InputFrameDecoded{ + Dx: DIRECTION_DECODER[encodedDirection][0], + Dy: DIRECTION_DECODER[encodedDirection][1], + BtnALevel: btnALevel, + } +} + func (pR *Room) inputFrameIdDebuggable(inputFrameId int32) bool { return 0 == (inputFrameId % 10) } diff --git a/battle_srv/protos/room_downsync_frame.pb.go b/battle_srv/protos/room_downsync_frame.pb.go index d826b45..460b3a8 100644 --- a/battle_srv/protos/room_downsync_frame.pb.go +++ b/battle_srv/protos/room_downsync_frame.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.28.1 -// protoc v3.7.1 +// protoc v3.21.4 // source: room_downsync_frame.proto package protos @@ -442,19 +442,82 @@ func (x *PlayerDownsyncMeta) GetColliderRadius() float64 { return 0 } +type InputFrameDecoded struct { + state protoimpl.MessageState + sizeCache protoimpl.SizeCache + unknownFields protoimpl.UnknownFields + + Dx int32 `protobuf:"varint,1,opt,name=dx,proto3" json:"dx,omitempty"` + Dy int32 `protobuf:"varint,2,opt,name=dy,proto3" json:"dy,omitempty"` + BtnALevel int32 `protobuf:"varint,3,opt,name=btnALevel,proto3" json:"btnALevel,omitempty"` +} + +func (x *InputFrameDecoded) Reset() { + *x = InputFrameDecoded{} + if protoimpl.UnsafeEnabled { + mi := &file_room_downsync_frame_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) + } +} + +func (x *InputFrameDecoded) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*InputFrameDecoded) ProtoMessage() {} + +func (x *InputFrameDecoded) ProtoReflect() protoreflect.Message { + mi := &file_room_downsync_frame_proto_msgTypes[3] + if protoimpl.UnsafeEnabled && x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use InputFrameDecoded.ProtoReflect.Descriptor instead. +func (*InputFrameDecoded) Descriptor() ([]byte, []int) { + return file_room_downsync_frame_proto_rawDescGZIP(), []int{3} +} + +func (x *InputFrameDecoded) GetDx() int32 { + if x != nil { + return x.Dx + } + return 0 +} + +func (x *InputFrameDecoded) GetDy() int32 { + if x != nil { + return x.Dy + } + return 0 +} + +func (x *InputFrameDecoded) GetBtnALevel() int32 { + if x != nil { + return x.BtnALevel + } + return 0 +} + type InputFrameUpsync struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache unknownFields protoimpl.UnknownFields - InputFrameId int32 `protobuf:"varint,1,opt,name=inputFrameId,proto3" json:"inputFrameId,omitempty"` - EncodedDir int32 `protobuf:"varint,6,opt,name=encodedDir,proto3" json:"encodedDir,omitempty"` + InputFrameId int32 `protobuf:"varint,1,opt,name=inputFrameId,proto3" json:"inputFrameId,omitempty"` + Encoded uint64 `protobuf:"varint,2,opt,name=encoded,proto3" json:"encoded,omitempty"` } func (x *InputFrameUpsync) Reset() { *x = InputFrameUpsync{} if protoimpl.UnsafeEnabled { - mi := &file_room_downsync_frame_proto_msgTypes[3] + mi := &file_room_downsync_frame_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -467,7 +530,7 @@ func (x *InputFrameUpsync) String() string { func (*InputFrameUpsync) ProtoMessage() {} func (x *InputFrameUpsync) ProtoReflect() protoreflect.Message { - mi := &file_room_downsync_frame_proto_msgTypes[3] + mi := &file_room_downsync_frame_proto_msgTypes[4] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -480,7 +543,7 @@ func (x *InputFrameUpsync) ProtoReflect() protoreflect.Message { // Deprecated: Use InputFrameUpsync.ProtoReflect.Descriptor instead. func (*InputFrameUpsync) Descriptor() ([]byte, []int) { - return file_room_downsync_frame_proto_rawDescGZIP(), []int{3} + return file_room_downsync_frame_proto_rawDescGZIP(), []int{4} } func (x *InputFrameUpsync) GetInputFrameId() int32 { @@ -490,9 +553,9 @@ func (x *InputFrameUpsync) GetInputFrameId() int32 { return 0 } -func (x *InputFrameUpsync) GetEncodedDir() int32 { +func (x *InputFrameUpsync) GetEncoded() uint64 { if x != nil { - return x.EncodedDir + return x.Encoded } return 0 } @@ -510,7 +573,7 @@ type InputFrameDownsync struct { func (x *InputFrameDownsync) Reset() { *x = InputFrameDownsync{} if protoimpl.UnsafeEnabled { - mi := &file_room_downsync_frame_proto_msgTypes[4] + mi := &file_room_downsync_frame_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -523,7 +586,7 @@ func (x *InputFrameDownsync) String() string { func (*InputFrameDownsync) ProtoMessage() {} func (x *InputFrameDownsync) ProtoReflect() protoreflect.Message { - mi := &file_room_downsync_frame_proto_msgTypes[4] + mi := &file_room_downsync_frame_proto_msgTypes[5] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -536,7 +599,7 @@ func (x *InputFrameDownsync) ProtoReflect() protoreflect.Message { // Deprecated: Use InputFrameDownsync.ProtoReflect.Descriptor instead. func (*InputFrameDownsync) Descriptor() ([]byte, []int) { - return file_room_downsync_frame_proto_rawDescGZIP(), []int{4} + return file_room_downsync_frame_proto_rawDescGZIP(), []int{5} } func (x *InputFrameDownsync) GetInputFrameId() int32 { @@ -571,7 +634,7 @@ type HeartbeatUpsync struct { func (x *HeartbeatUpsync) Reset() { *x = HeartbeatUpsync{} if protoimpl.UnsafeEnabled { - mi := &file_room_downsync_frame_proto_msgTypes[5] + mi := &file_room_downsync_frame_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -584,7 +647,7 @@ func (x *HeartbeatUpsync) String() string { func (*HeartbeatUpsync) ProtoMessage() {} func (x *HeartbeatUpsync) ProtoReflect() protoreflect.Message { - mi := &file_room_downsync_frame_proto_msgTypes[5] + mi := &file_room_downsync_frame_proto_msgTypes[6] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -597,7 +660,7 @@ func (x *HeartbeatUpsync) ProtoReflect() protoreflect.Message { // Deprecated: Use HeartbeatUpsync.ProtoReflect.Descriptor instead. func (*HeartbeatUpsync) Descriptor() ([]byte, []int) { - return file_room_downsync_frame_proto_rawDescGZIP(), []int{5} + return file_room_downsync_frame_proto_rawDescGZIP(), []int{6} } func (x *HeartbeatUpsync) GetClientTimestamp() int64 { @@ -621,7 +684,7 @@ type RoomDownsyncFrame struct { func (x *RoomDownsyncFrame) Reset() { *x = RoomDownsyncFrame{} if protoimpl.UnsafeEnabled { - mi := &file_room_downsync_frame_proto_msgTypes[6] + mi := &file_room_downsync_frame_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -634,7 +697,7 @@ func (x *RoomDownsyncFrame) String() string { func (*RoomDownsyncFrame) ProtoMessage() {} func (x *RoomDownsyncFrame) ProtoReflect() protoreflect.Message { - mi := &file_room_downsync_frame_proto_msgTypes[6] + mi := &file_room_downsync_frame_proto_msgTypes[7] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -647,7 +710,7 @@ func (x *RoomDownsyncFrame) ProtoReflect() protoreflect.Message { // Deprecated: Use RoomDownsyncFrame.ProtoReflect.Descriptor instead. func (*RoomDownsyncFrame) Descriptor() ([]byte, []int) { - return file_room_downsync_frame_proto_rawDescGZIP(), []int{6} + return file_room_downsync_frame_proto_rawDescGZIP(), []int{7} } func (x *RoomDownsyncFrame) GetId() int32 { @@ -696,7 +759,7 @@ type WsReq struct { func (x *WsReq) Reset() { *x = WsReq{} if protoimpl.UnsafeEnabled { - mi := &file_room_downsync_frame_proto_msgTypes[7] + mi := &file_room_downsync_frame_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -709,7 +772,7 @@ func (x *WsReq) String() string { func (*WsReq) ProtoMessage() {} func (x *WsReq) ProtoReflect() protoreflect.Message { - mi := &file_room_downsync_frame_proto_msgTypes[7] + mi := &file_room_downsync_frame_proto_msgTypes[8] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -722,7 +785,7 @@ func (x *WsReq) ProtoReflect() protoreflect.Message { // Deprecated: Use WsReq.ProtoReflect.Descriptor instead. func (*WsReq) Descriptor() ([]byte, []int) { - return file_room_downsync_frame_proto_rawDescGZIP(), []int{7} + return file_room_downsync_frame_proto_rawDescGZIP(), []int{8} } func (x *WsReq) GetMsgId() int32 { @@ -797,7 +860,7 @@ type WsResp struct { func (x *WsResp) Reset() { *x = WsResp{} if protoimpl.UnsafeEnabled { - mi := &file_room_downsync_frame_proto_msgTypes[8] + mi := &file_room_downsync_frame_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -810,7 +873,7 @@ func (x *WsResp) String() string { func (*WsResp) ProtoMessage() {} func (x *WsResp) ProtoReflect() protoreflect.Message { - mi := &file_room_downsync_frame_proto_msgTypes[8] + mi := &file_room_downsync_frame_proto_msgTypes[9] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -823,7 +886,7 @@ func (x *WsResp) ProtoReflect() protoreflect.Message { // Deprecated: Use WsResp.ProtoReflect.Descriptor instead. func (*WsResp) Descriptor() ([]byte, []int) { - return file_room_downsync_frame_proto_rawDescGZIP(), []int{8} + return file_room_downsync_frame_proto_rawDescGZIP(), []int{9} } func (x *WsResp) GetRet() int32 { @@ -992,87 +1055,92 @@ var file_room_downsync_frame_proto_rawDesc = []byte{ 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x22, - 0x56, 0x0a, 0x10, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, - 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, - 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, - 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x65, 0x6e, 0x63, 0x6f, 0x64, - 0x65, 0x64, 0x44, 0x69, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x65, 0x6e, 0x63, - 0x6f, 0x64, 0x65, 0x64, 0x44, 0x69, 0x72, 0x22, 0x7c, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, - 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, - 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, - 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, - 0x20, 0x03, 0x28, 0x04, 0x52, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, - 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, - 0x64, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x0f, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, - 0x61, 0x74, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x6c, 0x69, 0x65, - 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x03, 0x52, 0x0f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, - 0x6d, 0x70, 0x22, 0x8b, 0x03, 0x0a, 0x11, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, - 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x40, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x79, - 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x73, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, - 0x72, 0x61, 0x6d, 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, - 0x79, 0x52, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, - 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x03, 0x52, 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, - 0x6f, 0x73, 0x12, 0x4c, 0x0a, 0x0b, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, - 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, - 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, - 0x6d, 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x45, 0x6e, - 0x74, 0x72, 0x79, 0x52, 0x0b, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, - 0x1a, 0x52, 0x0a, 0x0c, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, - 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, - 0x65, 0x79, 0x12, 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, - 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x5a, 0x0a, 0x10, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, - 0x74, 0x61, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x05, 0x76, 0x61, - 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, - 0x63, 0x4d, 0x65, 0x74, 0x61, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, - 0x22, 0xb8, 0x02, 0x0a, 0x05, 0x57, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x73, - 0x67, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, - 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, - 0x61, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x1c, - 0x0a, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x09, 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, - 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x0d, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, - 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x12, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, - 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, - 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, - 0x49, 0x64, 0x12, 0x4e, 0x0a, 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, - 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x18, 0x07, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, - 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x15, 0x69, 0x6e, 0x70, - 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, - 0x63, 0x68, 0x12, 0x27, 0x0a, 0x02, 0x68, 0x62, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, - 0x74, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x02, 0x68, 0x62, 0x22, 0x89, 0x02, 0x0a, 0x06, - 0x57, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x63, 0x68, 0x6f, - 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x65, - 0x63, 0x68, 0x6f, 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63, - 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x2b, 0x0a, 0x03, - 0x72, 0x64, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x73, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, - 0x72, 0x61, 0x6d, 0x65, 0x52, 0x03, 0x72, 0x64, 0x66, 0x12, 0x54, 0x0a, 0x17, 0x69, 0x6e, 0x70, - 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, - 0x61, 0x74, 0x63, 0x68, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, - 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x17, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, - 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, - 0x36, 0x0a, 0x08, 0x62, 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, - 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x62, - 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x42, 0x13, 0x5a, 0x11, 0x62, 0x61, 0x74, 0x74, 0x6c, - 0x65, 0x5f, 0x73, 0x72, 0x76, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x51, 0x0a, 0x11, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x65, 0x63, + 0x6f, 0x64, 0x65, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x64, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x02, 0x64, 0x78, 0x12, 0x0e, 0x0a, 0x02, 0x64, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x02, 0x64, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x74, 0x6e, 0x41, 0x4c, 0x65, 0x76, 0x65, + 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x62, 0x74, 0x6e, 0x41, 0x4c, 0x65, 0x76, + 0x65, 0x6c, 0x22, 0x50, 0x0a, 0x10, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, + 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x69, 0x6e, + 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, + 0x63, 0x6f, 0x64, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x07, 0x65, 0x6e, 0x63, + 0x6f, 0x64, 0x65, 0x64, 0x22, 0x7c, 0x0a, 0x12, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, + 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x22, 0x0a, 0x0c, 0x69, 0x6e, + 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x0c, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1c, + 0x0a, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, + 0x04, 0x52, 0x09, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, + 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x04, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, 0x64, 0x4c, 0x69, + 0x73, 0x74, 0x22, 0x3b, 0x0a, 0x0f, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x55, + 0x70, 0x73, 0x79, 0x6e, 0x63, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, + 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, + 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, + 0x8b, 0x03, 0x0a, 0x11, 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, + 0x46, 0x72, 0x61, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x40, 0x0a, 0x07, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, + 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, + 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, + 0x65, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, + 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, + 0x0e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x4e, 0x61, 0x6e, 0x6f, 0x73, 0x12, + 0x4c, 0x0a, 0x0b, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x18, 0x04, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x52, 0x6f, + 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x2e, + 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, + 0x52, 0x0b, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, 0x1a, 0x52, 0x0a, + 0x0c, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, + 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, + 0x2c, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f, + 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, + 0x01, 0x1a, 0x5a, 0x0a, 0x10, 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x4d, 0x65, 0x74, 0x61, 0x73, + 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, + 0x50, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x4d, 0x65, + 0x74, 0x61, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb8, 0x02, + 0x0a, 0x05, 0x57, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x1a, 0x0a, + 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, + 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63, 0x74, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6a, + 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, + 0x6a, 0x6f, 0x69, 0x6e, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x63, 0x6b, + 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x0d, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, + 0x2e, 0x0a, 0x12, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, + 0x61, 0x6d, 0x65, 0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x61, 0x63, 0x6b, + 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, + 0x4e, 0x0a, 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, + 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, + 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x52, 0x15, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x55, 0x70, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, + 0x27, 0x0a, 0x02, 0x68, 0x62, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x55, 0x70, + 0x73, 0x79, 0x6e, 0x63, 0x52, 0x02, 0x68, 0x62, 0x22, 0x89, 0x02, 0x0a, 0x06, 0x57, 0x73, 0x52, + 0x65, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x03, 0x72, 0x65, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x63, 0x68, 0x6f, 0x65, 0x64, 0x4d, + 0x73, 0x67, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x65, 0x63, 0x68, 0x6f, + 0x65, 0x64, 0x4d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x63, 0x74, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x61, 0x63, 0x74, 0x12, 0x2b, 0x0a, 0x03, 0x72, 0x64, 0x66, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, + 0x52, 0x6f, 0x6f, 0x6d, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x46, 0x72, 0x61, 0x6d, + 0x65, 0x52, 0x03, 0x72, 0x64, 0x66, 0x12, 0x54, 0x0a, 0x17, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, + 0x68, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, + 0x2e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, 0x6f, 0x77, 0x6e, 0x73, + 0x79, 0x6e, 0x63, 0x52, 0x17, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x44, + 0x6f, 0x77, 0x6e, 0x73, 0x79, 0x6e, 0x63, 0x42, 0x61, 0x74, 0x63, 0x68, 0x12, 0x36, 0x0a, 0x08, + 0x62, 0x63, 0x69, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x43, 0x6f, + 0x6c, 0x6c, 0x69, 0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x62, 0x63, 0x69, 0x46, + 0x72, 0x61, 0x6d, 0x65, 0x42, 0x13, 0x5a, 0x11, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x73, + 0x72, 0x76, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x33, } var ( @@ -1087,38 +1155,39 @@ func file_room_downsync_frame_proto_rawDescGZIP() []byte { return file_room_downsync_frame_proto_rawDescData } -var file_room_downsync_frame_proto_msgTypes = make([]protoimpl.MessageInfo, 13) +var file_room_downsync_frame_proto_msgTypes = make([]protoimpl.MessageInfo, 14) var file_room_downsync_frame_proto_goTypes = []interface{}{ (*BattleColliderInfo)(nil), // 0: protos.BattleColliderInfo (*PlayerDownsync)(nil), // 1: protos.PlayerDownsync (*PlayerDownsyncMeta)(nil), // 2: protos.PlayerDownsyncMeta - (*InputFrameUpsync)(nil), // 3: protos.InputFrameUpsync - (*InputFrameDownsync)(nil), // 4: protos.InputFrameDownsync - (*HeartbeatUpsync)(nil), // 5: protos.HeartbeatUpsync - (*RoomDownsyncFrame)(nil), // 6: protos.RoomDownsyncFrame - (*WsReq)(nil), // 7: protos.WsReq - (*WsResp)(nil), // 8: protos.WsResp - nil, // 9: protos.BattleColliderInfo.StrToVec2DListMapEntry - nil, // 10: protos.BattleColliderInfo.StrToPolygon2DListMapEntry - nil, // 11: protos.RoomDownsyncFrame.PlayersEntry - nil, // 12: protos.RoomDownsyncFrame.PlayerMetasEntry - (*sharedprotos.Direction)(nil), // 13: sharedprotos.Direction - (*sharedprotos.Vec2DList)(nil), // 14: sharedprotos.Vec2DList - (*sharedprotos.Polygon2DList)(nil), // 15: sharedprotos.Polygon2DList + (*InputFrameDecoded)(nil), // 3: protos.InputFrameDecoded + (*InputFrameUpsync)(nil), // 4: protos.InputFrameUpsync + (*InputFrameDownsync)(nil), // 5: protos.InputFrameDownsync + (*HeartbeatUpsync)(nil), // 6: protos.HeartbeatUpsync + (*RoomDownsyncFrame)(nil), // 7: protos.RoomDownsyncFrame + (*WsReq)(nil), // 8: protos.WsReq + (*WsResp)(nil), // 9: protos.WsResp + nil, // 10: protos.BattleColliderInfo.StrToVec2DListMapEntry + nil, // 11: protos.BattleColliderInfo.StrToPolygon2DListMapEntry + nil, // 12: protos.RoomDownsyncFrame.PlayersEntry + nil, // 13: protos.RoomDownsyncFrame.PlayerMetasEntry + (*sharedprotos.Direction)(nil), // 14: sharedprotos.Direction + (*sharedprotos.Vec2DList)(nil), // 15: sharedprotos.Vec2DList + (*sharedprotos.Polygon2DList)(nil), // 16: sharedprotos.Polygon2DList } var file_room_downsync_frame_proto_depIdxs = []int32{ - 9, // 0: protos.BattleColliderInfo.strToVec2DListMap:type_name -> protos.BattleColliderInfo.StrToVec2DListMapEntry - 10, // 1: protos.BattleColliderInfo.strToPolygon2DListMap:type_name -> protos.BattleColliderInfo.StrToPolygon2DListMapEntry - 13, // 2: protos.PlayerDownsync.dir:type_name -> sharedprotos.Direction - 11, // 3: protos.RoomDownsyncFrame.players:type_name -> protos.RoomDownsyncFrame.PlayersEntry - 12, // 4: protos.RoomDownsyncFrame.playerMetas:type_name -> protos.RoomDownsyncFrame.PlayerMetasEntry - 3, // 5: protos.WsReq.inputFrameUpsyncBatch:type_name -> protos.InputFrameUpsync - 5, // 6: protos.WsReq.hb:type_name -> protos.HeartbeatUpsync - 6, // 7: protos.WsResp.rdf:type_name -> protos.RoomDownsyncFrame - 4, // 8: protos.WsResp.inputFrameDownsyncBatch:type_name -> protos.InputFrameDownsync + 10, // 0: protos.BattleColliderInfo.strToVec2DListMap:type_name -> protos.BattleColliderInfo.StrToVec2DListMapEntry + 11, // 1: protos.BattleColliderInfo.strToPolygon2DListMap:type_name -> protos.BattleColliderInfo.StrToPolygon2DListMapEntry + 14, // 2: protos.PlayerDownsync.dir:type_name -> sharedprotos.Direction + 12, // 3: protos.RoomDownsyncFrame.players:type_name -> protos.RoomDownsyncFrame.PlayersEntry + 13, // 4: protos.RoomDownsyncFrame.playerMetas:type_name -> protos.RoomDownsyncFrame.PlayerMetasEntry + 4, // 5: protos.WsReq.inputFrameUpsyncBatch:type_name -> protos.InputFrameUpsync + 6, // 6: protos.WsReq.hb:type_name -> protos.HeartbeatUpsync + 7, // 7: protos.WsResp.rdf:type_name -> protos.RoomDownsyncFrame + 5, // 8: protos.WsResp.inputFrameDownsyncBatch:type_name -> protos.InputFrameDownsync 0, // 9: protos.WsResp.bciFrame:type_name -> protos.BattleColliderInfo - 14, // 10: protos.BattleColliderInfo.StrToVec2DListMapEntry.value:type_name -> sharedprotos.Vec2DList - 15, // 11: protos.BattleColliderInfo.StrToPolygon2DListMapEntry.value:type_name -> sharedprotos.Polygon2DList + 15, // 10: protos.BattleColliderInfo.StrToVec2DListMapEntry.value:type_name -> sharedprotos.Vec2DList + 16, // 11: protos.BattleColliderInfo.StrToPolygon2DListMapEntry.value:type_name -> sharedprotos.Polygon2DList 1, // 12: protos.RoomDownsyncFrame.PlayersEntry.value:type_name -> protos.PlayerDownsync 2, // 13: protos.RoomDownsyncFrame.PlayerMetasEntry.value:type_name -> protos.PlayerDownsyncMeta 14, // [14:14] is the sub-list for method output_type @@ -1171,7 +1240,7 @@ func file_room_downsync_frame_proto_init() { } } file_room_downsync_frame_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*InputFrameUpsync); i { + switch v := v.(*InputFrameDecoded); i { case 0: return &v.state case 1: @@ -1183,7 +1252,7 @@ func file_room_downsync_frame_proto_init() { } } file_room_downsync_frame_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*InputFrameDownsync); i { + switch v := v.(*InputFrameUpsync); i { case 0: return &v.state case 1: @@ -1195,7 +1264,7 @@ func file_room_downsync_frame_proto_init() { } } file_room_downsync_frame_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*HeartbeatUpsync); i { + switch v := v.(*InputFrameDownsync); i { case 0: return &v.state case 1: @@ -1207,7 +1276,7 @@ func file_room_downsync_frame_proto_init() { } } file_room_downsync_frame_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*RoomDownsyncFrame); i { + switch v := v.(*HeartbeatUpsync); i { case 0: return &v.state case 1: @@ -1219,7 +1288,7 @@ func file_room_downsync_frame_proto_init() { } } file_room_downsync_frame_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*WsReq); i { + switch v := v.(*RoomDownsyncFrame); i { case 0: return &v.state case 1: @@ -1231,6 +1300,18 @@ func file_room_downsync_frame_proto_init() { } } file_room_downsync_frame_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + switch v := v.(*WsReq); i { + case 0: + return &v.state + case 1: + return &v.sizeCache + case 2: + return &v.unknownFields + default: + return nil + } + } + file_room_downsync_frame_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { switch v := v.(*WsResp); i { case 0: return &v.state @@ -1249,7 +1330,7 @@ func file_room_downsync_frame_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_room_downsync_frame_proto_rawDesc, NumEnums: 0, - NumMessages: 13, + NumMessages: 14, NumExtensions: 0, NumServices: 0, }, diff --git a/charts/AttackTriggerCases.jpg b/charts/AttackTriggerCases.jpg index 4257f05..baa137f 100644 Binary files a/charts/AttackTriggerCases.jpg and b/charts/AttackTriggerCases.jpg differ diff --git a/dnmshared/sharedprotos/geometry.pb.go b/dnmshared/sharedprotos/geometry.pb.go index e3aedc9..b96f64b 100644 --- a/dnmshared/sharedprotos/geometry.pb.go +++ b/dnmshared/sharedprotos/geometry.pb.go @@ -1,7 +1,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: // protoc-gen-go v1.28.1 -// protoc v3.7.1 +// protoc v3.21.4 // source: geometry.proto package sharedprotos diff --git a/dragonBonesAnimProjects/SoldierElf.dbproj b/dragonBonesAnimProjects/SoldierElf.dbproj index 087cf6c..c585f3a 100644 Binary files a/dragonBonesAnimProjects/SoldierElf.dbproj and b/dragonBonesAnimProjects/SoldierElf.dbproj differ diff --git a/dragonBonesAnimProjects/SoldierFireGhost.dbproj b/dragonBonesAnimProjects/SoldierFireGhost.dbproj new file mode 100644 index 0000000..91582ec Binary files /dev/null and b/dragonBonesAnimProjects/SoldierFireGhost.dbproj differ diff --git a/dragonBonesAnimProjects/library/SoldierElf_tex.json b/dragonBonesAnimProjects/library/SoldierElf.json similarity index 100% rename from dragonBonesAnimProjects/library/SoldierElf_tex.json rename to dragonBonesAnimProjects/library/SoldierElf.json diff --git a/dragonBonesAnimProjects/library/SoldierElf_tex.png b/dragonBonesAnimProjects/library/SoldierElf.png similarity index 100% rename from dragonBonesAnimProjects/library/SoldierElf_tex.png rename to dragonBonesAnimProjects/library/SoldierElf.png diff --git a/dragonBonesAnimProjects/library/SoldierElf_tex.json.meta b/dragonBonesAnimProjects/library/SoldierElf_tex.json.meta deleted file mode 100644 index b3fd966..0000000 --- a/dragonBonesAnimProjects/library/SoldierElf_tex.json.meta +++ /dev/null @@ -1,7 +0,0 @@ -{ - "ver": "1.0.0", - "uuid": "04d25c46-a15a-4390-89fd-7fdb22de884f", - "atlasJson": "{\"width\":128,\"imagePath\":\"SoldierElf_tex.png\",\"height\":128,\"name\":\"SoldierElf\",\"SubTexture\":[{\"frameHeight\":45,\"y\":1,\"frameX\":0,\"width\":34,\"frameY\":0,\"height\":44,\"name\":\"cape\",\"frameWidth\":34,\"x\":70},{\"width\":10,\"y\":107,\"height\":14,\"name\":\"shouder_l\",\"x\":74},{\"width\":11,\"y\":107,\"height\":14,\"name\":\"forearm_l\",\"x\":61},{\"width\":15,\"y\":93,\"height\":16,\"name\":\"hand_l\",\"x\":1},{\"width\":30,\"y\":61,\"height\":30,\"name\":\"weapon_hand_l\",\"x\":1},{\"width\":8,\"y\":101,\"height\":11,\"name\":\"thigh_l\",\"x\":86},{\"width\":12,\"y\":93,\"height\":17,\"name\":\"calf_l\",\"x\":18},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_l\",\"x\":39},{\"width\":28,\"y\":61,\"height\":31,\"name\":\"pelvis\",\"x\":33},{\"width\":8,\"y\":88,\"height\":11,\"name\":\"thigh_r\",\"x\":77},{\"width\":12,\"y\":88,\"height\":17,\"name\":\"calf_r\",\"x\":63},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_r\",\"x\":17},{\"width\":13,\"y\":94,\"height\":12,\"name\":\"shouder_r\",\"x\":45},{\"width\":67,\"y\":1,\"height\":58,\"name\":\"chest\",\"x\":1},{\"width\":11,\"y\":94,\"height\":17,\"name\":\"forearm_r\",\"x\":32},{\"width\":14,\"y\":111,\"height\":13,\"name\":\"hand_r\",\"x\":1},{\"frameHeight\":39,\"y\":47,\"frameX\":-2,\"width\":34,\"frameY\":0,\"height\":39,\"name\":\"we_bl_4_f_1\",\"frameWidth\":36,\"x\":70}]}", - "texture": "4a3aabb1-75b6-40ec-b107-241164a8ec23", - "subMetas": {} -} \ No newline at end of file diff --git a/dragonBonesAnimProjects/library/SoldierFireGhost.json b/dragonBonesAnimProjects/library/SoldierFireGhost.json new file mode 100644 index 0000000..7bf40b2 --- /dev/null +++ b/dragonBonesAnimProjects/library/SoldierFireGhost.json @@ -0,0 +1 @@ +{"imagePath":"Soldier_02_tex.png","width":128,"name":"Soldier_02","SubTexture":[{"x":53,"y":44,"width":23,"name":"biu","height":22},{"x":76,"y":68,"width":9,"name":"rightArm","height":14},{"y":35,"frameY":0,"height":32,"frameWidth":29,"frameX":-1,"frameHeight":32,"width":27,"name":"yinmoqe00","x":89},{"x":53,"y":1,"width":34,"name":"body","height":41},{"x":78,"y":44,"width":9,"name":"rightShoulder","height":13},{"y":50,"frameY":0,"height":18,"frameWidth":19,"frameX":0,"frameHeight":18,"width":19,"name":"rightFrontArm","x":23},{"x":23,"y":70,"width":14,"name":"rightHand","height":14},{"y":68,"frameY":0,"height":12,"frameWidth":12,"frameX":0,"frameHeight":12,"width":12,"name":"leftArm","x":62},{"x":1,"y":73,"width":13,"name":"leftShoulder","height":12},{"x":1,"y":50,"width":20,"name":"leftFrontArm","height":21},{"x":89,"y":1,"width":33,"name":"head","height":32},{"x":1,"y":1,"width":50,"name":"head2","height":47},{"x":44,"y":68,"width":16,"name":"leftHand","height":14},{"y":59,"frameY":-2,"height":4,"frameWidth":8,"frameX":-1,"frameHeight":8,"width":4,"name":"huomiao01","x":78}],"height":128} \ No newline at end of file diff --git a/dragonBonesAnimProjects/library/SoldierFireGhost.png b/dragonBonesAnimProjects/library/SoldierFireGhost.png new file mode 100644 index 0000000..c695ff5 Binary files /dev/null and b/dragonBonesAnimProjects/library/SoldierFireGhost.png differ diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json index 6efb62a..7d4168d 100644 --- a/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json @@ -1 +1 @@ -{"frameRate":25,"name":"SoldierElf","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":25,"name":"SoldierElf","aabb":{"x":-34.53,"y":-104.78,"width":86.87,"height":105.25},"bone":[{"name":"root1","transform":{"y":-11.0128}},{"inheritScale":false,"name":"effect_r","parent":"root1","transform":{"x":33.28,"y":4,"skX":-46.2343,"skY":-23.9186,"scX":2.1416,"scY":2.3753}},{"inheritScale":false,"length":3,"name":"root","parent":"root1","transform":{"x":-0.04,"y":-15.48,"skX":90.2632,"skY":90.2632}},{"inheritScale":false,"length":5,"name":"thigh_l","parent":"root","transform":{"x":1.6606,"y":-6.4628,"skX":-40.9714,"skY":-40.9714,"scX":0.9869,"scY":0.9853}},{"inheritScale":false,"length":5,"name":"thigh_r","parent":"root","transform":{"x":1.3414,"y":6.0837,"skX":3.567,"skY":3.567,"scX":0.9859,"scY":0.9981}},{"inheritScale":false,"length":3,"name":"pelvis","parent":"root","transform":{"x":-3.2028,"y":0.1015,"skX":-174.7594,"skY":-174.7594,"scX":0.9802,"scY":0.9952}},{"inheritScale":false,"length":8,"name":"chest","parent":"pelvis","transform":{"x":4,"y":-0.0016,"skX":-5.2066,"skY":-5.2246,"scX":0.9979,"scY":0.9998}},{"inheritScale":false,"length":9,"name":"calf_r","parent":"thigh_r","transform":{"x":5.704,"y":0.0016,"skX":16.144,"skY":16.1453,"scX":0.9955,"scY":0.9905}},{"inheritScale":false,"length":7,"name":"calf_l","parent":"thigh_l","transform":{"x":5.6592,"y":-0.0016,"skX":32.6682,"skY":32.6684,"scX":0.9945,"scY":0.9954}},{"inheritScale":false,"length":5,"name":"shouder_l","parent":"chest","transform":{"x":8.6578,"y":9.9632,"skX":-164.5031,"skY":-164.5031,"scX":0.9868,"scY":0.9948}},{"inheritScale":false,"length":5,"name":"shouder_r","parent":"chest","transform":{"x":10.4583,"y":-13.3897,"skX":-147.4808,"skY":-147.4808,"scX":0.9972,"scY":0.9986}},{"inheritScale":false,"name":"foot_l","parent":"calf_l","transform":{"x":15.2897,"y":1.2193,"skX":8.0381,"skY":8.0381,"scX":0.9955}},{"inheritScale":false,"name":"foot_r","parent":"calf_r","transform":{"x":14.2999,"y":-2.3357,"skX":-19.9771,"skY":-19.9771,"scX":0.9955}},{"inheritScale":false,"length":12,"name":"forearm_r","parent":"shouder_r","transform":{"x":6.0016,"y":0.0016,"skX":-38.0045,"skY":-38.0045,"scX":0.9973,"scY":0.994}},{"inheritScale":false,"length":7,"name":"forearm_l","parent":"shouder_l","transform":{"x":6.0144,"y":-0.0016,"skX":-42.3089,"skY":-42.3089,"scX":0.9979,"scY":0.987}},{"inheritScale":false,"name":"hand_r","parent":"forearm_r","transform":{"x":13.7919,"y":0.7114,"skX":3.3187,"skY":3.3187,"scX":1.0446,"scY":0.9963}},{"inheritScale":false,"name":"hand_l","parent":"forearm_l","transform":{"x":7.6912,"y":-0.0032,"skX":119.4238,"skY":119.4238,"scX":0.9894,"scY":0.9954}},{"inheritScale":false,"name":"weapon_hand_l","parent":"hand_l","transform":{"x":-8.5173,"y":-2.6264,"skX":139.1066,"skY":139.1066,"scX":0.9967,"scY":0.9984}},{"inheritRotation":false,"inheritScale":false,"name":"weapon_hand_r","parent":"hand_r","transform":{"x":1.4768,"y":-3.0184,"skX":-17.7744,"skY":-17.7744,"scX":0.9981,"scY":0.999}}],"slot":[{"name":"cape","parent":"pelvis"},{"name":"shouder_l","parent":"shouder_l"},{"name":"forearm_l","parent":"forearm_l"},{"name":"hand_l","parent":"hand_l"},{"name":"weapon_hand_l","parent":"weapon_hand_l"},{"name":"thigh_l","parent":"thigh_l"},{"name":"calf_l","parent":"calf_l"},{"name":"foot_l","parent":"foot_l"},{"name":"pelvis","parent":"pelvis"},{"name":"thigh_r","parent":"thigh_r"},{"name":"calf_r","parent":"calf_r"},{"name":"foot_r","parent":"foot_r"},{"name":"shouder_r","parent":"shouder_r"},{"name":"chest","parent":"chest"},{"name":"weapon_hand_r","parent":"weapon_hand_r"},{"name":"forearm_r","parent":"forearm_r"},{"name":"hand_r","parent":"hand_r"},{"name":"effect_r","parent":"effect_r"}],"skin":[{"slot":[{"name":"forearm_r","display":[{"name":"mecha_1004d_folder/textures/forearm_r_3","transform":{"x":6.7,"y":0.41,"skX":-87.21,"skY":-87.21},"path":"forearm_r"}]},{"name":"shouder_l","display":[{"name":"mecha_1004d_folder/textures/shouder_l_1","transform":{"x":0.4,"y":0.06,"skX":-68.92,"skY":-68.56,"scX":1.0015,"scY":0.9985},"path":"shouder_l"}]},{"name":"shouder_r","display":[{"name":"mecha_1004d_folder/textures/shouder_r_1","transform":{"x":0.46,"y":0.08,"skX":-136.05,"skY":-136.05},"path":"shouder_r"}]},{"name":"foot_r","display":[{"name":"mecha_1004d_folder/textures/foot_r_0","transform":{"x":1.06,"y":-1.31,"skX":-85.95,"skY":-85.95},"path":"foot_r"}]},{"name":"calf_l","display":[{"name":"mecha_1004d_folder/textures/calf_l_0","transform":{"x":7.16,"y":0.84,"skX":-91.2,"skY":-91.2},"path":"calf_l"}]},{"name":"hand_l","display":[{"name":"mecha_1004d_folder/textures/hand_l_2","transform":{"x":-5.62,"y":-5.3,"skX":179.52,"skY":179.52},"path":"hand_l"}]},{"name":"cape","display":[{"name":"cape","transform":{"x":10.59,"y":-16.32,"skX":84.58,"skY":84.41,"scX":1.0049,"scY":1.0201}}]},{"name":"thigh_l","display":[{"name":"mecha_1004d_folder/textures/thigh_l_0","transform":{"x":1.19,"y":0.3,"skX":-66.04,"skY":-66.04},"path":"thigh_l"}]},{"name":"hand_r","display":[{"name":"mecha_1004d_folder/textures/hand_r_2","transform":{"x":3.51,"y":-2.17,"skX":-84.89,"skY":-84.89},"path":"hand_r"}]},{"name":"effect_r","display":[{"name":"we_bl_4","transform":{"x":11.39,"y":-12.38},"path":"we_bl_4_f_1"}]},{"name":"weapon_hand_l","display":[{"name":"weapon_hand_l","transform":{"x":12.59,"y":1.83,"skX":52.1,"skY":52.1}}]},{"name":"foot_l","display":[{"name":"mecha_1004d_folder/textures/foot_l_0","transform":{"x":1.82,"y":-3.5,"skX":-90.37,"skY":-90.37},"path":"foot_l"}]},{"name":"weapon_hand_r","display":[{"name":"weapon_hand_r","transform":{"x":14.2,"y":2.01,"skX":51,"skY":51},"path":"weapon_hand_l"}]},{"name":"calf_r","display":[{"name":"mecha_1004d_folder/textures/calf_r_0","transform":{"x":5.87,"y":0.08,"skX":-91.22,"skY":-91.22},"path":"calf_r"}]},{"name":"thigh_r","display":[{"name":"mecha_1004d_folder/textures/thigh_r_0","transform":{"x":-0.65,"y":1.03,"skX":-94.6,"skY":-94.62,"scX":0.9991,"scY":0.99},"path":"thigh_r"}]},{"name":"forearm_l","display":[{"name":"mecha_1004d_folder/textures/forearm_l_2","transform":{"x":5.09,"y":0.15,"skX":-63.39,"skY":-63.39},"path":"forearm_l"}]},{"name":"chest","display":[{"name":"mecha_1004d_folder/textures/chest_0","transform":{"x":42.26,"y":-1.48,"skX":90.4,"skY":90.61},"path":"chest"}]},{"name":"pelvis","display":[{"name":"mecha_1004d_folder/textures/pelvis_0","transform":{"x":9.56,"y":-1.5,"skX":83.65,"skY":83.65},"path":"pelvis"}]}]}],"animation":[{"duration":60,"playTimes":0,"fadeInTime":0.2,"name":"Idle1","bone":[{"name":"pelvis","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.31},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.5},{"duration":0}]},{"name":"chest","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":0.11},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.48},{"duration":0}]},{"name":"shouder_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.6,"y":-0.22},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.98},{"duration":0}]},{"name":"shouder_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.23,"y":0.28},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.98},{"duration":0}]},{"name":"forearm_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":-0.01},{"duration":0}]},{"name":"forearm_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01},{"duration":0}]},{"name":"hand_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.5},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"hand_l","rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.75},{"duration":0}]},{"name":"weapon_hand_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.92},{"duration":0}]},{"name":"weapon_hand_r","rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-3.01},{"duration":0}]},{"name":"thigh_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.17,"y":0.21},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":0.25},{"duration":0}]},{"name":"thigh_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.45,"y":-0.21},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":7.53},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.97},{"duration":0}]},{"name":"calf_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.75},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":1.01},{"duration":0}]},{"name":"calf_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-10.55},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":1.03},{"duration":0}]},{"name":"foot_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.5},{"duration":0}]},{"name":"foot_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"y":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":3.03},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":58,"playTimes":0,"fadeInTime":0.2,"name":"Walking","frame":[{"duration":27},{"duration":31,"sound":"footstep"},{"duration":0,"sound":"walk"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":10,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":17,"tweenEasing":0,"x":-0.47,"y":-0.01},{"duration":8,"tweenEasing":0,"x":0.01},{"duration":5,"tweenEasing":0},{"duration":16,"tweenEasing":0,"x":-1.06,"y":0.03},{"duration":0,"x":-0.1}],"rotateFrame":[{"duration":10,"tweenEasing":0,"rotate":6.25},{"duration":2,"tweenEasing":0,"rotate":5.25},{"duration":17,"tweenEasing":0,"rotate":5},{"duration":8,"tweenEasing":0,"rotate":5.75},{"duration":5,"tweenEasing":0,"rotate":5.5},{"duration":16,"tweenEasing":0,"rotate":5.75},{"duration":0,"rotate":6.05}],"scaleFrame":[{"duration":10,"tweenEasing":0,"x":1.01},{"duration":19,"tweenEasing":0,"x":0.98},{"duration":8,"tweenEasing":0,"x":0.98},{"duration":21}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.06,"y":0.19},{"duration":7,"tweenEasing":0,"x":-0.44,"y":0.27},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.28},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.29},{"duration":7,"tweenEasing":0,"x":1.11,"y":0.18},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.18},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":5,"tweenEasing":0,"x":-0.28,"y":0.26},{"duration":2,"tweenEasing":0,"x":-0.03,"y":0.25},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.23},{"duration":7,"tweenEasing":0,"x":-0.05,"y":0.24},{"duration":9,"tweenEasing":0,"x":0.69,"y":0.13},{"duration":0,"x":0.33,"y":0.17}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-4.04},{"duration":7,"tweenEasing":0,"rotate":-3.46},{"duration":2,"tweenEasing":0,"rotate":-2.94},{"duration":7,"tweenEasing":0,"rotate":-3.06},{"duration":7,"tweenEasing":0,"rotate":-4.75},{"duration":3,"tweenEasing":0,"rotate":-6.6},{"duration":3,"tweenEasing":0,"rotate":-5.2},{"duration":5,"tweenEasing":0,"rotate":-3.88},{"duration":2,"tweenEasing":0,"rotate":-4.26},{"duration":3,"tweenEasing":0,"rotate":-4.62},{"duration":7,"tweenEasing":0,"rotate":-5.53},{"duration":9,"tweenEasing":0,"rotate":-7.66},{"duration":0,"rotate":-5.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99},{"duration":9,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":32}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-1.74,"y":8.78},{"duration":7,"tweenEasing":0,"x":-1.64,"y":8.53},{"duration":2,"tweenEasing":0,"x":-1.12,"y":6.91},{"duration":7,"tweenEasing":0,"x":-0.96,"y":6.53},{"duration":7,"tweenEasing":0,"x":-0.54,"y":5.36},{"duration":3,"tweenEasing":0,"x":-0.63,"y":4.56},{"duration":3,"tweenEasing":0,"x":-0.91,"y":5.01},{"duration":5,"tweenEasing":0,"x":-1.15,"y":5.24},{"duration":2,"tweenEasing":0,"x":-1.33,"y":6.55},{"duration":3,"tweenEasing":0,"x":-1.37,"y":6.99},{"duration":7,"tweenEasing":0,"x":-1.4,"y":7.48},{"duration":9,"tweenEasing":0,"x":-1.43,"y":8.33},{"duration":0,"x":-1.62,"y":8.69}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-19.52},{"duration":7,"tweenEasing":0,"rotate":-17.27},{"duration":2,"tweenEasing":0,"rotate":-10.54},{"duration":7,"tweenEasing":0,"rotate":-8.54},{"duration":7,"tweenEasing":0,"rotate":-2.29},{"duration":3,"tweenEasing":0,"rotate":2.3},{"duration":3,"tweenEasing":0,"rotate":1.76},{"duration":5,"tweenEasing":0,"rotate":0.78},{"duration":2,"tweenEasing":0,"rotate":-0.48},{"duration":3,"tweenEasing":0,"rotate":-1.48},{"duration":7,"tweenEasing":0,"rotate":-2.99},{"duration":9,"tweenEasing":0,"rotate":-7.27},{"duration":0,"rotate":-17.54}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":2.41,"y":-9.55},{"duration":7,"tweenEasing":0,"x":2.28,"y":-9.45},{"duration":2,"tweenEasing":0,"x":1.84,"y":-8.13},{"duration":7,"tweenEasing":0,"x":1.7,"y":-7.82},{"duration":7,"tweenEasing":0,"x":1.34,"y":-6.83},{"duration":3,"tweenEasing":0,"x":1.5,"y":-6.26},{"duration":3,"tweenEasing":0,"x":1.76,"y":-6.59},{"duration":5,"tweenEasing":0,"x":1.99,"y":-6.82},{"duration":2,"tweenEasing":0,"x":2.13,"y":-7.95},{"duration":3,"tweenEasing":0,"x":2.15,"y":-8.36},{"duration":7,"tweenEasing":0,"x":2.16,"y":-8.77},{"duration":9,"tweenEasing":0,"x":2.12,"y":-9.35},{"duration":0,"x":2.28,"y":-9.54}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":9.06},{"duration":7,"tweenEasing":0,"rotate":8.05},{"duration":2,"tweenEasing":0,"rotate":5.76},{"duration":7,"tweenEasing":0,"rotate":4.5},{"duration":7,"tweenEasing":0,"rotate":-0.28},{"duration":3,"tweenEasing":0,"rotate":-5.21},{"duration":3,"tweenEasing":0,"rotate":-6.5},{"duration":5,"tweenEasing":0,"rotate":-5.98},{"duration":2,"tweenEasing":0,"rotate":-2.48},{"duration":3,"tweenEasing":0,"rotate":-0.98},{"duration":7,"tweenEasing":0,"rotate":1.52},{"duration":9,"tweenEasing":0,"rotate":7.27},{"duration":0,"rotate":9.53}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.85},{"duration":7,"tweenEasing":0,"x":0.87},{"duration":2,"tweenEasing":0,"x":0.91},{"duration":7,"tweenEasing":0,"x":0.91},{"duration":7,"tweenEasing":0,"x":0.89},{"duration":3,"tweenEasing":0,"x":0.87},{"duration":8,"tweenEasing":0,"x":0.86},{"duration":2,"tweenEasing":0,"x":0.86},{"duration":10,"tweenEasing":0,"x":0.87},{"duration":9,"tweenEasing":0,"x":0.87},{"duration":0,"x":0.86}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.82,"y":-0.12},{"duration":7,"tweenEasing":0,"x":0.8,"y":-0.13},{"duration":2,"tweenEasing":0,"x":0.78,"y":-0.1},{"duration":7,"tweenEasing":0,"x":0.78,"y":-0.07},{"duration":7,"tweenEasing":0,"x":0.8,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.84,"y":-0.04},{"duration":3,"tweenEasing":0,"x":0.83,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.84,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.84,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.84,"y":-0.08},{"duration":7,"tweenEasing":0,"x":0.84,"y":-0.1},{"duration":9,"tweenEasing":0,"x":0.83,"y":-0.12},{"duration":0,"x":0.82,"y":-0.13}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6.96},{"duration":7,"tweenEasing":0,"rotate":6.97},{"duration":2,"tweenEasing":0,"rotate":7.24},{"duration":7,"tweenEasing":0,"rotate":7.74},{"duration":7,"tweenEasing":0,"rotate":8.73},{"duration":3,"tweenEasing":0,"rotate":9.96},{"duration":3,"tweenEasing":0,"rotate":8.7},{"duration":5,"tweenEasing":0,"rotate":6.69},{"duration":2,"tweenEasing":0,"rotate":3.2},{"duration":3,"tweenEasing":0,"rotate":1.95},{"duration":7,"tweenEasing":0,"rotate":0.44},{"duration":9,"tweenEasing":0,"rotate":0.2},{"duration":0,"rotate":5.68}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.85,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.89,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.95,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.95},{"duration":7,"tweenEasing":0,"x":0.96},{"duration":3,"tweenEasing":0,"x":0.95},{"duration":3,"tweenEasing":0,"x":0.95},{"duration":5,"tweenEasing":0,"x":0.94},{"duration":2,"tweenEasing":0,"x":0.93},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":7,"tweenEasing":0,"x":0.92},{"duration":9,"tweenEasing":0,"x":0.9},{"duration":0,"x":0.86,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.24,"y":0.22},{"duration":7,"tweenEasing":0,"x":1.24,"y":0.23},{"duration":2,"tweenEasing":0,"x":1.23,"y":0.21},{"duration":7,"tweenEasing":0,"x":1.24,"y":0.2},{"duration":7,"tweenEasing":0,"x":1.21,"y":0.19},{"duration":3,"tweenEasing":0,"x":1.2,"y":0.2},{"duration":3,"tweenEasing":0,"x":1.21,"y":0.2},{"duration":5,"tweenEasing":0,"x":1.2,"y":0.17},{"duration":2,"tweenEasing":0,"x":1.18,"y":0.18},{"duration":3,"tweenEasing":0,"x":1.17,"y":0.18},{"duration":7,"tweenEasing":0,"x":1.19,"y":0.18},{"duration":9,"tweenEasing":0,"x":1.25,"y":0.2},{"duration":0,"x":1.23,"y":0.22}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6.52},{"duration":7,"tweenEasing":0,"rotate":6.27},{"duration":2,"tweenEasing":0,"rotate":5.52},{"duration":7,"tweenEasing":0,"rotate":5.27},{"duration":7,"tweenEasing":0,"rotate":6.51},{"duration":3,"tweenEasing":0,"rotate":9.5},{"duration":3,"tweenEasing":0,"rotate":10},{"duration":5,"tweenEasing":0,"rotate":10.25},{"duration":2,"tweenEasing":0,"rotate":9.5},{"duration":3,"tweenEasing":0,"rotate":9.01},{"duration":7,"tweenEasing":0,"rotate":8.77},{"duration":9,"tweenEasing":0,"rotate":8.53},{"duration":0,"rotate":7.78}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":16,"tweenEasing":0,"x":1.03},{"duration":7,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":5,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":9,"x":1.03}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.14,"y":-0.07},{"duration":7,"tweenEasing":0,"x":0.12,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.11,"y":-0.05},{"duration":7,"tweenEasing":0,"x":0.1,"y":-0.04},{"duration":7,"tweenEasing":0,"x":0.1,"y":-0.06},{"duration":3,"tweenEasing":0,"x":0.1,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.11},{"duration":5,"tweenEasing":0,"x":0.12,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.14,"y":-0.06},{"duration":10,"tweenEasing":0,"x":0.15,"y":-0.05},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.05},{"duration":0,"x":0.14,"y":-0.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-5.5},{"duration":7,"tweenEasing":0,"rotate":-5},{"duration":2,"tweenEasing":0,"rotate":-4.5},{"duration":7,"tweenEasing":0,"rotate":-4.25},{"duration":7,"tweenEasing":0,"rotate":-5.25},{"duration":3,"tweenEasing":0,"rotate":-7.5},{"duration":3,"tweenEasing":0,"rotate":-7.25},{"duration":5,"tweenEasing":0,"rotate":-6.25},{"duration":2,"tweenEasing":0,"rotate":-1.75},{"duration":3,"tweenEasing":0,"rotate":-0.25},{"duration":7,"tweenEasing":0,"rotate":0.25},{"duration":9,"tweenEasing":0,"rotate":-1.5},{"duration":0,"rotate":-4.75}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":7,"tweenEasing":0,"x":0.98},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.96},{"duration":5,"tweenEasing":0,"x":0.96},{"duration":5,"tweenEasing":0,"x":0.97},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":9,"tweenEasing":0,"x":0.98},{"duration":0,"x":0.98,"y":0.99}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.13,"y":0.09},{"duration":7,"tweenEasing":0,"x":0.09,"y":0.09},{"duration":2,"tweenEasing":0,"x":0.04,"y":0.12},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.1},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.13},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.13},{"duration":5,"tweenEasing":0,"x":0.04,"y":0.14},{"duration":2,"tweenEasing":0,"x":0.06,"y":0.15},{"duration":3,"tweenEasing":0,"x":0.07,"y":0.15},{"duration":7,"tweenEasing":0,"x":0.08,"y":0.14},{"duration":9,"tweenEasing":0,"x":0.1,"y":0.14},{"duration":0,"x":0.12,"y":0.11}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":5.14},{"duration":7,"tweenEasing":0,"rotate":6.86},{"duration":2,"tweenEasing":0,"rotate":9.82},{"duration":7,"tweenEasing":0,"rotate":9.31},{"duration":7,"tweenEasing":0,"rotate":7.06},{"duration":3,"tweenEasing":0,"rotate":4.3},{"duration":3,"tweenEasing":0,"rotate":4.05},{"duration":5,"tweenEasing":0,"rotate":5.06},{"duration":2,"tweenEasing":0,"rotate":7.32},{"duration":3,"tweenEasing":0,"rotate":8.08},{"duration":7,"tweenEasing":0,"rotate":9.08},{"duration":9,"tweenEasing":0,"rotate":9.35},{"duration":0,"rotate":5.91}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.95},{"duration":7,"tweenEasing":0,"x":0.99,"y":0.96},{"duration":2,"tweenEasing":0,"y":0.97},{"duration":7,"tweenEasing":0,"y":0.97},{"duration":23,"tweenEasing":0,"x":0.99,"y":0.97},{"duration":7,"tweenEasing":0,"x":0.99,"y":0.97},{"duration":9,"tweenEasing":0,"y":0.97},{"duration":0,"y":0.96}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02},{"duration":7,"tweenEasing":0,"x":0.02},{"duration":2,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":7,"tweenEasing":0,"x":0.01},{"duration":7,"tweenEasing":0,"x":0.01},{"duration":3,"tweenEasing":0,"y":0.01},{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":9,"tweenEasing":0,"x":0.01},{"duration":0,"x":0.02,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.05},{"duration":7,"tweenEasing":0,"rotate":19.94},{"duration":2,"tweenEasing":0,"rotate":17.95},{"duration":7,"tweenEasing":0,"rotate":18.42},{"duration":7,"tweenEasing":0,"rotate":20.58},{"duration":3,"tweenEasing":0,"rotate":23.19},{"duration":3,"tweenEasing":0,"rotate":23.94},{"duration":5,"tweenEasing":0,"rotate":23.5},{"duration":2,"tweenEasing":0,"rotate":22.36},{"duration":3,"tweenEasing":0,"rotate":21.8},{"duration":7,"tweenEasing":0,"rotate":21.24},{"duration":9,"tweenEasing":0,"rotate":20.8},{"duration":0,"rotate":21.25}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.01},{"duration":7,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.01},{"duration":7,"tweenEasing":0,"x":-0.01,"y":0.01},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-0.01},{"duration":10,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":7,"tweenEasing":0,"y":0.01},{"duration":9,"tweenEasing":0,"y":0.01},{"duration":0,"x":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-3.01},{"duration":7,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":6.76},{"duration":7,"tweenEasing":0,"rotate":8.77},{"duration":7,"tweenEasing":0,"rotate":14.4},{"duration":3,"tweenEasing":0,"rotate":18.27},{"duration":3,"tweenEasing":0,"rotate":19.78},{"duration":5,"tweenEasing":0,"rotate":21.53},{"duration":2,"tweenEasing":0,"rotate":24.53},{"duration":3,"tweenEasing":0,"rotate":24.28},{"duration":7,"tweenEasing":0,"rotate":21.78},{"duration":9,"tweenEasing":0,"rotate":12.52},{"duration":0,"rotate":-0.5}]},{"name":"root","translateFrame":[{"duration":10,"tweenEasing":0,"x":-1.63,"y":0.96},{"duration":19,"tweenEasing":0,"x":-1.48,"y":0.02},{"duration":8,"tweenEasing":0,"x":-1.63,"y":1.03},{"duration":21,"tweenEasing":0,"x":-1.79,"y":0.99},{"duration":0,"x":-1.65,"y":0.95}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.64,"y":-2.98},{"duration":2,"tweenEasing":0,"x":1.2,"y":-3.05},{"duration":5,"tweenEasing":0,"x":1.43,"y":-3.11},{"duration":2,"tweenEasing":0,"x":1.14,"y":-3.22},{"duration":7,"tweenEasing":0,"x":0.73,"y":-3.3},{"duration":7,"tweenEasing":0,"x":-0.05,"y":-3.55},{"duration":3,"tweenEasing":0,"x":0.51,"y":-3.77},{"duration":3,"tweenEasing":0,"x":1.26,"y":-3.91},{"duration":5,"tweenEasing":0,"x":1.48,"y":-3.99},{"duration":2,"tweenEasing":0,"x":1,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.45,"y":-3.93},{"duration":7,"tweenEasing":0,"x":-0.23,"y":-3.84},{"duration":9,"tweenEasing":0,"x":-0.66,"y":-3.51},{"duration":0,"x":0.16,"y":-3.07}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-21.02},{"duration":2,"tweenEasing":0,"rotate":-22.53},{"duration":5,"tweenEasing":0,"rotate":-26.04},{"duration":2,"tweenEasing":0,"rotate":-53.15},{"duration":7,"tweenEasing":0,"rotate":-58.92},{"duration":7,"tweenEasing":0,"rotate":-60.43},{"duration":3,"tweenEasing":0,"rotate":-72.97},{"duration":3,"tweenEasing":0,"rotate":-65.19},{"duration":5,"tweenEasing":0,"rotate":-68.71},{"duration":2,"tweenEasing":0,"rotate":-61.43},{"duration":3,"tweenEasing":0,"rotate":-54.4},{"duration":7,"tweenEasing":0,"rotate":-44.36},{"duration":9,"tweenEasing":0,"rotate":-31.31},{"duration":0,"rotate":-21.52}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":10,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":0,"x":1.01}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.63,"y":2.95},{"duration":7,"tweenEasing":0,"x":-0.37,"y":3},{"duration":2,"tweenEasing":0,"x":-1.12,"y":3.18},{"duration":7,"tweenEasing":0,"x":-1.64,"y":3.24},{"duration":7,"tweenEasing":0,"x":-2.57,"y":3.46},{"duration":3,"tweenEasing":0,"x":-2,"y":3.72},{"duration":3,"tweenEasing":0,"x":-1.22,"y":3.86},{"duration":2,"tweenEasing":0,"x":-0.89,"y":3.94},{"duration":3,"tweenEasing":0,"x":-0.79,"y":3.96},{"duration":2,"tweenEasing":0,"x":-0.99,"y":3.91},{"duration":3,"tweenEasing":0,"x":-1.38,"y":3.91},{"duration":7,"tweenEasing":0,"x":-1.88,"y":3.85},{"duration":9,"tweenEasing":0,"x":-2.1,"y":3.53},{"duration":0,"x":-1.12,"y":3.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-20.58},{"duration":7,"tweenEasing":0,"rotate":-21.34},{"duration":2,"tweenEasing":0,"rotate":-5.52},{"duration":7,"tweenEasing":0,"rotate":1.26},{"duration":7,"tweenEasing":0,"rotate":20.33},{"duration":3,"tweenEasing":0,"rotate":26.84},{"duration":3,"tweenEasing":0,"rotate":21.33},{"duration":2,"tweenEasing":0,"rotate":19.83},{"duration":3,"tweenEasing":0,"rotate":16.31},{"duration":2,"tweenEasing":0,"rotate":1.76},{"duration":3,"tweenEasing":0,"rotate":-8.29},{"duration":7,"tweenEasing":0,"rotate":-15.32},{"duration":9,"tweenEasing":0,"rotate":-18.83},{"duration":0,"rotate":-19.05}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.98,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":9,"tweenEasing":0,"x":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":7,"tweenEasing":0,"x":0.04,"y":-0.03},{"duration":7,"tweenEasing":0,"x":0.03,"y":-0.04},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.02},{"duration":5,"tweenEasing":0,"x":0.04,"y":-0.04},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.02},{"duration":7,"tweenEasing":0,"x":0.05,"y":-0.02},{"duration":9,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":0,"x":0.07,"y":-0.06}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":48.14},{"duration":2,"tweenEasing":0,"rotate":58.43},{"duration":5,"tweenEasing":0,"rotate":64.7},{"duration":2,"tweenEasing":0,"rotate":80.26},{"duration":7,"tweenEasing":0,"rotate":79.51},{"duration":7,"tweenEasing":0,"rotate":56.68},{"duration":3,"tweenEasing":0,"rotate":52.2},{"duration":3,"tweenEasing":0,"rotate":42.17},{"duration":5,"tweenEasing":0,"rotate":48.44},{"duration":2,"tweenEasing":0,"rotate":48.66},{"duration":3,"tweenEasing":0,"rotate":43.64},{"duration":7,"tweenEasing":0,"rotate":35.85},{"duration":9,"tweenEasing":0,"rotate":32.07},{"duration":0,"rotate":41.6}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":5,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.99,"y":1.01},{"duration":10,"tweenEasing":0,"x":0.99},{"duration":9,"tweenEasing":0,"x":0.99},{"duration":0,"x":0.98}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.02},{"duration":7,"tweenEasing":0,"x":-0.03,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":7,"tweenEasing":0,"x":-0.03,"y":-0.04},{"duration":7,"tweenEasing":0,"x":-0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":5,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":7,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":9,"tweenEasing":0,"x":-0.02,"y":-0.01},{"duration":0,"x":-0.03,"y":-0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":26.19},{"duration":7,"tweenEasing":0,"rotate":27.35},{"duration":2,"tweenEasing":0,"rotate":23.54},{"duration":7,"tweenEasing":0,"rotate":19.51},{"duration":7,"tweenEasing":0,"rotate":10.96},{"duration":3,"tweenEasing":0,"rotate":20.49},{"duration":3,"tweenEasing":0,"rotate":36.56},{"duration":2,"tweenEasing":0,"rotate":47.6},{"duration":3,"tweenEasing":0,"rotate":54.38},{"duration":2,"tweenEasing":0,"rotate":63.92},{"duration":3,"tweenEasing":0,"rotate":66.19},{"duration":7,"tweenEasing":0,"rotate":62.92},{"duration":9,"tweenEasing":0,"rotate":43.86},{"duration":0,"rotate":24.05}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":9,"tweenEasing":0,"x":0.98},{"duration":0}]},{"name":"foot_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.24,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.23,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.2,"y":-0.01},{"duration":7,"tweenEasing":0,"x":-0.18,"y":-0.04},{"duration":7,"tweenEasing":0,"x":-0.15,"y":0.02},{"duration":3,"tweenEasing":0,"x":-0.16,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.17},{"duration":5,"tweenEasing":0,"x":-0.17},{"duration":2,"tweenEasing":0,"x":-0.16,"y":0.06},{"duration":3,"tweenEasing":0,"x":-0.16,"y":0.03},{"duration":7,"tweenEasing":0,"x":-0.16,"y":0.03},{"duration":9,"tweenEasing":0,"x":-0.18,"y":-0.02},{"duration":0,"x":-0.21,"y":-0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-20.1},{"duration":2,"tweenEasing":0,"rotate":-16.61},{"duration":5,"tweenEasing":0,"rotate":-12.35},{"duration":2,"tweenEasing":0,"rotate":10.49},{"duration":7,"tweenEasing":0,"rotate":13.25},{"duration":7,"tweenEasing":0,"rotate":3.01},{"duration":3,"tweenEasing":0,"rotate":5.76},{"duration":3,"tweenEasing":0,"rotate":23.03},{"duration":5,"tweenEasing":0,"rotate":20.28},{"duration":2,"tweenEasing":0,"rotate":12.78},{"duration":3,"tweenEasing":0,"rotate":10.78},{"duration":7,"tweenEasing":0,"rotate":8.52},{"duration":9,"tweenEasing":0,"rotate":-0.75},{"duration":0,"rotate":-16.03}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":20,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"x":0.98}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.53,"y":-0.14},{"duration":7,"tweenEasing":0,"x":1.52,"y":-0.1},{"duration":2,"tweenEasing":0,"x":1.51,"y":-0.07},{"duration":7,"tweenEasing":0,"x":1.51,"y":-0.09},{"duration":7,"tweenEasing":0,"x":1.51,"y":-0.12},{"duration":3,"tweenEasing":0,"x":1.49,"y":-0.17},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.18},{"duration":2,"tweenEasing":0,"x":1.47,"y":-0.18},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.2},{"duration":2,"tweenEasing":0,"x":1.5,"y":-0.16},{"duration":3,"tweenEasing":0,"x":1.52,"y":-0.15},{"duration":7,"tweenEasing":0,"x":1.55,"y":-0.16},{"duration":9,"tweenEasing":0,"x":1.56,"y":-0.1},{"duration":0,"x":1.54,"y":-0.11}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-6.94},{"duration":7,"tweenEasing":0,"rotate":-7.25},{"duration":2,"tweenEasing":0,"rotate":-19},{"duration":7,"tweenEasing":0,"rotate":-21.75},{"duration":7,"tweenEasing":0,"rotate":-31.28},{"duration":3,"tweenEasing":0,"rotate":-44.59},{"duration":3,"tweenEasing":0,"rotate":-49.88},{"duration":2,"tweenEasing":0,"rotate":-47.9},{"duration":3,"tweenEasing":0,"rotate":-44.39},{"duration":2,"tweenEasing":0,"rotate":-31.6},{"duration":3,"tweenEasing":0,"rotate":-20.56},{"duration":7,"tweenEasing":0,"rotate":-18.8},{"duration":9,"tweenEasing":0,"rotate":-26.94},{"duration":0,"rotate":-13.54}],"scaleFrame":[{"duration":19,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":10,"tweenEasing":0,"y":0.99},{"duration":7,"tweenEasing":0,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.01},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":58,"value":-1}]}]},{"duration":66,"fadeInTime":0.1,"name":"Dying","bone":[{"name":"pelvis","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":2,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":10,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.36,"y":-0.17},{"duration":2,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":3,"tweenEasing":0,"x":-0.06,"y":-0.16},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.64,"y":-0.33},{"duration":9,"tweenEasing":0,"x":0.17,"y":-0.32},{"duration":0,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":17.28},{"duration":4,"tweenEasing":0,"rotate":5.5},{"duration":2,"tweenEasing":0,"rotate":-5.5},{"duration":10,"tweenEasing":0,"rotate":-6},{"duration":10,"tweenEasing":0,"rotate":1.75},{"duration":5,"tweenEasing":0,"rotate":5.5},{"duration":2,"tweenEasing":0,"rotate":-7},{"duration":3,"tweenEasing":0,"rotate":-10.51},{"duration":3,"tweenEasing":0,"rotate":6.51},{"duration":2,"tweenEasing":0,"rotate":20.04},{"duration":3,"tweenEasing":0,"rotate":41.37},{"duration":4,"tweenEasing":0,"rotate":82.99},{"duration":3,"tweenEasing":0,"rotate":84},{"duration":9,"tweenEasing":0,"rotate":87.25},{"duration":0,"rotate":85}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.98},{"duration":10,"tweenEasing":0,"x":0.98},{"duration":5,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.04},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":9,"x":1.03}]},{"name":"chest","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.71},{"duration":3,"tweenEasing":0,"x":-0.03,"y":0.28},{"tweenEasing":0,"x":0.05,"y":0.48},{"duration":2,"tweenEasing":0,"x":-0.2,"y":0.86},{"duration":10,"tweenEasing":0,"x":-0.27,"y":0.94},{"duration":10,"tweenEasing":0,"x":-0.12,"y":0.54},{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.06},{"duration":2,"tweenEasing":0,"x":0.04,"y":0.04},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.05},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.35},{"duration":2,"tweenEasing":0,"x":-0.12,"y":0.05},{"duration":3,"tweenEasing":0,"x":-0.19,"y":0.43},{"duration":4,"tweenEasing":0,"x":-0.13,"y":0.39},{"duration":3,"tweenEasing":0,"x":-0.1,"y":0.23},{"duration":4,"tweenEasing":0,"x":-0.1,"y":0.26},{"duration":5,"tweenEasing":0,"x":-0.12,"y":0.53},{"duration":0,"x":-0.07,"y":0.25}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":44.35},{"duration":3,"tweenEasing":0,"rotate":24.74},{"tweenEasing":0,"rotate":10.26},{"duration":2,"tweenEasing":0,"rotate":8.29},{"duration":10,"tweenEasing":0,"rotate":4.32},{"duration":10,"tweenEasing":0,"rotate":1.32},{"duration":5,"tweenEasing":0,"rotate":1.88},{"duration":2,"tweenEasing":0,"rotate":-2.13},{"duration":3,"tweenEasing":0,"rotate":-0.44},{"duration":3,"tweenEasing":0,"rotate":15.76},{"duration":2,"tweenEasing":0,"rotate":37.03},{"duration":3,"tweenEasing":0,"rotate":17.21},{"duration":4,"tweenEasing":0,"rotate":-25.71},{"duration":3,"tweenEasing":0,"rotate":15.88},{"duration":4,"tweenEasing":0,"rotate":-3.38},{"duration":5,"tweenEasing":0,"rotate":12.65},{"duration":0,"rotate":15.67}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":10,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.93},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0},{"duration":5,"x":1.01}]},{"name":"shouder_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.6,"y":7.58},{"duration":3,"tweenEasing":0,"x":1.4,"y":8.29},{"tweenEasing":0,"x":3.2,"y":6.9},{"duration":2,"tweenEasing":0,"x":1.67,"y":5.49},{"duration":10,"tweenEasing":0,"x":-0.81,"y":4.98},{"duration":10,"tweenEasing":0,"x":-1.99,"y":5.37},{"duration":5,"tweenEasing":0,"x":0.57,"y":5.79},{"duration":2,"tweenEasing":0,"x":0.83,"y":4.7},{"duration":3,"tweenEasing":0,"x":0.91,"y":3.96},{"duration":3,"tweenEasing":0,"x":-0.44,"y":2.83},{"duration":2,"tweenEasing":0,"x":-3.08,"y":4.1},{"duration":3,"tweenEasing":0,"x":-1.24,"y":6.75},{"duration":4,"tweenEasing":0,"x":-3.48,"y":14.35},{"duration":3,"tweenEasing":0,"x":-0.97,"y":13.13},{"duration":4,"tweenEasing":0,"x":-1.45,"y":13.55},{"duration":5,"tweenEasing":0,"x":-0.61,"y":12.94},{"duration":0,"x":-0.52,"y":12.96}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-81.03},{"duration":3,"tweenEasing":0,"rotate":69.12},{"tweenEasing":0,"rotate":70.36},{"duration":2,"tweenEasing":0,"rotate":7.92},{"duration":10,"tweenEasing":0,"rotate":-7.21},{"duration":10,"tweenEasing":0,"rotate":6.38},{"duration":5,"tweenEasing":0,"rotate":-12.29},{"duration":2,"tweenEasing":0,"rotate":32.33},{"duration":3,"tweenEasing":0,"rotate":78.92},{"duration":3,"tweenEasing":0,"rotate":23.95},{"duration":2,"tweenEasing":0,"rotate":-17.09},{"duration":3,"tweenEasing":0,"rotate":-30.39},{"duration":4,"tweenEasing":0,"rotate":-8.51},{"duration":3,"tweenEasing":0,"rotate":-68.19},{"duration":4,"tweenEasing":0,"rotate":-62.93},{"duration":5,"tweenEasing":0,"rotate":-55.67},{"duration":0,"rotate":-55.92}]},{"name":"shouder_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":1.86,"y":-11.59},{"duration":2,"tweenEasing":0,"x":-0.92,"y":-12.92},{"duration":3,"tweenEasing":0,"x":-1.4,"y":-12.54},{"tweenEasing":0,"x":-0.47,"y":-9.24},{"duration":2,"tweenEasing":0,"x":0.23,"y":-7.51},{"duration":10,"tweenEasing":0,"x":2.02,"y":-4.95},{"duration":10,"tweenEasing":0,"x":4.02,"y":-5.5},{"duration":5,"tweenEasing":0,"x":1.57,"y":-6.9},{"duration":2,"tweenEasing":0,"x":1.38,"y":-5.55},{"duration":3,"tweenEasing":0,"x":1.22,"y":-4.68},{"duration":3,"tweenEasing":0,"x":2,"y":-3.25},{"duration":2,"tweenEasing":0,"x":3.13,"y":-4.25},{"duration":3,"tweenEasing":0,"x":1.42,"y":-8.87},{"duration":4,"tweenEasing":0,"x":2.96,"y":-16.32},{"duration":3,"tweenEasing":0,"x":-0.25,"y":-14.02},{"duration":4,"tweenEasing":0,"x":0.16,"y":-14.36},{"duration":5,"tweenEasing":0,"x":-0.56,"y":-13.82},{"duration":0,"x":-0.59,"y":-13.92}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-106.06},{"duration":2,"tweenEasing":0,"rotate":-8.75},{"duration":3,"tweenEasing":0,"rotate":3.7},{"tweenEasing":0,"rotate":16.47},{"duration":2,"tweenEasing":0,"rotate":17.43},{"duration":10,"tweenEasing":0,"rotate":16.36},{"duration":10,"tweenEasing":0,"rotate":1.1},{"duration":5,"tweenEasing":0,"rotate":25.08},{"duration":2,"tweenEasing":0,"rotate":27.28},{"duration":3,"tweenEasing":0,"rotate":21},{"duration":3,"tweenEasing":0,"rotate":-9.44},{"duration":2,"tweenEasing":0,"rotate":-30.15},{"duration":3,"tweenEasing":0,"rotate":1.96},{"duration":4,"tweenEasing":0,"rotate":-20.8},{"duration":3,"tweenEasing":0,"rotate":-28.08},{"duration":4,"tweenEasing":0,"rotate":-20.04},{"duration":5,"tweenEasing":0,"rotate":-19.34},{"duration":0,"rotate":-19.1}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.08,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.09,"y":0.99},{"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":10,"tweenEasing":0,"x":1.01},{"duration":5,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.86,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":3,"tweenEasing":0,"x":0.81,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.78,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.82},{"duration":4,"tweenEasing":0,"x":0.72,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.19},{"duration":4,"tweenEasing":0,"x":1.18},{"duration":5,"tweenEasing":0,"x":1.2},{"duration":0,"x":1.15}]},{"name":"forearm_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":-0.08,"y":0.1},{"duration":2,"tweenEasing":0,"x":-0.26,"y":-0.19},{"duration":3,"tweenEasing":0,"x":-0.3,"y":-0.21},{"tweenEasing":0,"x":-0.21,"y":-0.26},{"duration":2,"tweenEasing":0,"x":-0.15,"y":-0.27},{"duration":10,"tweenEasing":0,"x":-0.08,"y":-0.24},{"duration":10,"tweenEasing":0,"x":-0.07,"y":-0.15},{"duration":5,"tweenEasing":0,"x":-0.16,"y":-0.27},{"duration":2,"tweenEasing":0,"x":-0.02,"y":-0.22},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.12},{"duration":3,"tweenEasing":0,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.09,"y":-0.13},{"duration":4,"tweenEasing":0,"x":0.03,"y":-0.06},{"duration":3,"tweenEasing":0,"x":-0.24,"y":-0.05},{"duration":4,"tweenEasing":0,"x":-0.23,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.27,"y":-0.04},{"duration":0,"x":-0.24,"y":-0.05}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-1.88},{"duration":2,"tweenEasing":0,"rotate":-14.52},{"duration":3,"tweenEasing":0,"rotate":-11.52},{"tweenEasing":0,"rotate":-12.78},{"duration":2,"tweenEasing":0,"rotate":-12.29},{"duration":10,"tweenEasing":0,"rotate":-7.79},{"duration":10,"tweenEasing":0,"rotate":11.55},{"duration":5,"tweenEasing":0,"rotate":1.93},{"duration":2,"tweenEasing":0,"rotate":4.68},{"duration":3,"tweenEasing":0,"rotate":5.43},{"duration":3,"tweenEasing":0,"rotate":4.15},{"duration":2,"tweenEasing":0,"rotate":-0.93},{"duration":3,"tweenEasing":0,"rotate":5.3},{"duration":4,"tweenEasing":0,"rotate":40.88},{"duration":3,"tweenEasing":0,"rotate":36.08},{"duration":4,"tweenEasing":0,"rotate":29.81},{"duration":5,"tweenEasing":0,"rotate":39.09},{"duration":0,"rotate":40.61}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.87,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.86,"y":1.01},{"tweenEasing":0,"x":0.83},{"duration":2,"tweenEasing":0,"x":0.83},{"duration":10,"tweenEasing":0,"x":0.85},{"duration":10,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":5,"tweenEasing":0,"x":0.82,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.76,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.75,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.7,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.66},{"duration":4,"tweenEasing":0,"x":0.66},{"duration":3,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.66},{"duration":5,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":0,"x":0.76,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.11,"y":0.24},{"duration":3,"tweenEasing":0,"x":-1.38,"y":0.34},{"tweenEasing":0,"x":-2.98,"y":0.44},{"duration":2,"tweenEasing":0,"x":-2.4,"y":0.55},{"duration":10,"tweenEasing":0,"x":0.17,"y":0.4},{"duration":10,"tweenEasing":0,"x":-0.15,"y":0.44},{"duration":5,"tweenEasing":0,"x":0.08,"y":0.4},{"duration":2,"tweenEasing":0,"x":0.6,"y":0.37},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.3},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.28},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.24},{"duration":3,"tweenEasing":0,"x":0.11,"y":0.23},{"duration":4,"tweenEasing":0,"x":-3.42,"y":0.06},{"duration":3,"tweenEasing":0,"x":-2.78,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-2.47,"y":-0.01},{"duration":5,"tweenEasing":0,"x":-3.04},{"duration":0,"x":-2.96,"y":0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-10.55},{"duration":3,"tweenEasing":0,"rotate":-146.71},{"tweenEasing":0,"rotate":-125.63},{"duration":2,"tweenEasing":0,"rotate":-48.42},{"duration":10,"tweenEasing":0,"rotate":-26.84},{"duration":10,"tweenEasing":0,"rotate":-54.95},{"duration":5,"tweenEasing":0,"rotate":13.27},{"duration":2,"tweenEasing":0,"rotate":-4.33},{"duration":3,"tweenEasing":0,"rotate":-41.41},{"duration":3,"tweenEasing":0,"rotate":4.18},{"duration":2,"tweenEasing":0,"rotate":-9.62},{"duration":3,"tweenEasing":0,"rotate":-4.1},{"duration":4,"tweenEasing":0,"rotate":-31.67},{"duration":3,"tweenEasing":0,"rotate":-4.85},{"duration":4,"tweenEasing":0,"rotate":12.72},{"duration":5,"tweenEasing":0,"rotate":-9.87},{"duration":0,"rotate":-12.37}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.89,"y":0.99},{"tweenEasing":0,"x":0.82,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.77,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.9,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.92},{"duration":2,"tweenEasing":0,"x":0.89},{"duration":3,"tweenEasing":0,"x":0.67},{"duration":3,"tweenEasing":0,"x":0.87,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":4,"tweenEasing":0,"x":0.74},{"duration":3,"tweenEasing":0,"x":0.77},{"duration":4,"tweenEasing":0,"x":0.74,"y":0.99},{"duration":5,"x":0.72,"y":0.99}]},{"name":"hand_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.17,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.09,"y":-0.2},{"tweenEasing":0,"x":-0.19,"y":-0.2},{"duration":2,"tweenEasing":0,"x":-0.25,"y":-0.08},{"duration":10,"tweenEasing":0,"x":-0.07,"y":-0.02},{"duration":10,"tweenEasing":0,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.02,"y":0.11},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.15},{"duration":3,"tweenEasing":0,"x":-0.05,"y":0.29},{"duration":3,"tweenEasing":0,"x":0.13,"y":0.17},{"duration":2,"tweenEasing":0,"x":0.08,"y":0.03},{"duration":3,"tweenEasing":0,"x":0.13},{"duration":4,"tweenEasing":0,"x":0.25,"y":-0.14},{"duration":3,"tweenEasing":0,"x":0.24,"y":-0.17},{"duration":4,"tweenEasing":0,"x":0.24,"y":-0.19},{"duration":5,"tweenEasing":0,"x":0.24,"y":-0.16},{"duration":0,"x":0.23,"y":-0.17}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":4.03},{"duration":3,"tweenEasing":0,"rotate":-12.06},{"tweenEasing":0,"rotate":152.64},{"duration":2,"tweenEasing":0,"rotate":130.33},{"duration":10,"tweenEasing":0,"rotate":134.36},{"duration":10,"tweenEasing":0,"rotate":144.41},{"duration":5,"tweenEasing":0,"rotate":90.23},{"duration":2,"tweenEasing":0,"rotate":79.72},{"duration":3,"tweenEasing":0,"rotate":71.89},{"duration":3,"tweenEasing":0,"rotate":59.63},{"duration":2,"tweenEasing":0,"rotate":110.84},{"duration":3,"tweenEasing":0,"rotate":121.36},{"duration":4,"tweenEasing":0,"rotate":146.89},{"duration":3,"tweenEasing":0,"rotate":155.42},{"duration":4,"tweenEasing":0,"rotate":148.64},{"duration":5,"tweenEasing":0,"rotate":148.89},{"duration":0,"rotate":149.89}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.65,"y":0.99},{"tweenEasing":0,"x":0.69},{"duration":2,"tweenEasing":0},{"duration":27,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":12,"x":0.97}]},{"name":"hand_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":-0.12,"y":0.09},{"duration":2,"tweenEasing":0,"x":0.05,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.06},{"tweenEasing":0,"x":0.13},{"duration":2,"tweenEasing":0,"x":0.16,"y":0.02},{"duration":10,"tweenEasing":0,"x":0.16,"y":0.05},{"duration":10,"tweenEasing":0,"x":0.09,"y":0.05},{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.21,"y":0.04},{"duration":3,"tweenEasing":0,"x":0.11,"y":0.11},{"duration":3,"tweenEasing":0,"x":0.06,"y":0.2},{"duration":2,"tweenEasing":0,"x":-1.02,"y":0.24},{"duration":3,"tweenEasing":0,"x":-3.04,"y":0.06},{"duration":4,"tweenEasing":0,"x":-0.37,"y":0.04},{"duration":3,"tweenEasing":0,"x":-0.44,"y":0.03},{"duration":4,"tweenEasing":0,"x":-0.44,"y":0.05},{"duration":5,"tweenEasing":0,"x":-0.19,"y":0.01},{"duration":0,"x":-0.01,"y":0.04}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":3.25},{"duration":2,"tweenEasing":0,"rotate":15.58},{"duration":3,"tweenEasing":0,"rotate":32.47},{"tweenEasing":0,"rotate":59.31},{"duration":2,"tweenEasing":0,"rotate":63.85},{"duration":10,"tweenEasing":0,"rotate":64.64},{"duration":10,"tweenEasing":0,"rotate":35.73},{"duration":5,"tweenEasing":0,"rotate":26.18},{"duration":2,"tweenEasing":0,"rotate":7.62},{"duration":3,"tweenEasing":0,"rotate":4.93},{"duration":3,"tweenEasing":0,"rotate":12.32},{"duration":2,"tweenEasing":0,"rotate":37.9},{"duration":3,"tweenEasing":0,"rotate":48.02},{"duration":4,"tweenEasing":0,"rotate":51.68},{"duration":3,"tweenEasing":0,"rotate":13.57},{"duration":4,"tweenEasing":0,"rotate":27.35},{"duration":5,"tweenEasing":0,"rotate":3.06},{"duration":0,"rotate":-0.06}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":1.01,"y":1.02},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.91},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.92},{"tweenEasing":0,"x":0.98,"y":0.92},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.91},{"duration":10,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":10,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":5,"tweenEasing":0,"x":0.96,"y":0.86},{"duration":2,"tweenEasing":0,"x":0.96,"y":0.83},{"duration":3,"tweenEasing":0,"x":0.96,"y":0.82},{"duration":3,"tweenEasing":0,"x":0.94,"y":0.76},{"duration":2,"tweenEasing":0,"x":0.93,"y":0.75},{"duration":3,"tweenEasing":0,"x":0.94,"y":0.75},{"duration":4,"tweenEasing":0,"y":0.97},{"duration":7,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":5,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0,"x":1.01,"y":1.02}]},{"name":"weapon_hand_l","translateFrame":[{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":10,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":23,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":16,"x":0.01}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":4.42},{"duration":2,"tweenEasing":0,"rotate":24.72},{"duration":3,"tweenEasing":0,"rotate":16.51},{"tweenEasing":0,"rotate":9.6},{"duration":2,"tweenEasing":0,"rotate":9.71},{"duration":10,"tweenEasing":0,"rotate":11.52},{"duration":10,"tweenEasing":0,"rotate":25.31},{"duration":5,"tweenEasing":0,"rotate":20.24},{"duration":2,"tweenEasing":0,"rotate":29.56},{"duration":3,"tweenEasing":0,"rotate":31.39},{"duration":3,"tweenEasing":0,"rotate":27.05},{"duration":2,"tweenEasing":0,"rotate":-4.88},{"duration":3,"tweenEasing":0,"rotate":-52.41},{"duration":4,"tweenEasing":0,"rotate":-105.87},{"duration":3,"tweenEasing":0,"rotate":-81.38},{"duration":4,"tweenEasing":0,"rotate":-80.53},{"duration":5,"tweenEasing":0,"rotate":-79.97},{"duration":0,"rotate":-80.88}]},{"name":"weapon_hand_r","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":16,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":0,"x":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.02},{"duration":3,"tweenEasing":0,"rotate":93.01},{"tweenEasing":0,"rotate":105.4},{"duration":2,"tweenEasing":0,"rotate":104.02},{"duration":27,"tweenEasing":0,"rotate":107.78},{"duration":3,"tweenEasing":0,"rotate":107.78},{"duration":3,"tweenEasing":0,"rotate":121.04},{"duration":2,"tweenEasing":0,"rotate":155.41},{"duration":3,"tweenEasing":0,"rotate":159.93},{"duration":4,"tweenEasing":0,"rotate":-179.75},{"duration":12,"rotate":-159.98}]},{"name":"root","translateFrame":[{"duration":6,"tweenEasing":0,"x":-9.14,"y":0.61},{"duration":4,"tweenEasing":0,"x":-16.58,"y":-0.55},{"duration":2,"tweenEasing":0,"x":-16.78,"y":-1.59},{"duration":10,"tweenEasing":0,"x":-15.62,"y":-0.25},{"duration":10,"tweenEasing":0,"x":-16.44,"y":0.69},{"duration":5,"tweenEasing":0,"x":-13.75,"y":-0.25},{"duration":2,"tweenEasing":0,"x":-5.66,"y":0.3},{"duration":6,"tweenEasing":0,"x":-2.27,"y":6.86},{"duration":5,"tweenEasing":0,"x":0.44,"y":7.93},{"duration":16,"tweenEasing":0,"x":3.54,"y":12.17},{"duration":0,"x":4.14,"y":13.02}]},{"name":"thigh_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.35,"y":-2.89},{"duration":3,"tweenEasing":0,"x":0.66,"y":-3.94},{"tweenEasing":0,"x":0.86,"y":-2.65},{"duration":2,"tweenEasing":0,"x":1.14,"y":-2.48},{"duration":10,"tweenEasing":0,"x":1.27,"y":-2},{"duration":10,"tweenEasing":0,"x":1.19,"y":-2.51},{"duration":5,"tweenEasing":0,"x":1.51,"y":-3.51},{"duration":2,"tweenEasing":0,"x":1.57,"y":-3.25},{"duration":3,"tweenEasing":0,"x":1.55,"y":-2.85},{"duration":3,"tweenEasing":0,"x":0.72,"y":-1.7},{"duration":2,"tweenEasing":0,"x":-0.09,"y":-2.67},{"duration":3,"tweenEasing":0,"x":0.79,"y":-4.22},{"duration":4,"tweenEasing":0,"x":2.11,"y":-4.38},{"duration":3,"tweenEasing":0,"x":0.93,"y":-4.52},{"duration":4,"tweenEasing":0,"x":1.04,"y":-4.38},{"duration":5,"tweenEasing":0,"x":1.3,"y":-4.05},{"duration":0,"x":1.36,"y":-3.69}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-44.61},{"duration":3,"tweenEasing":0,"rotate":-48.38},{"tweenEasing":0,"rotate":-43.86},{"duration":2,"tweenEasing":0,"rotate":-43.35},{"duration":10,"tweenEasing":0,"rotate":-54.15},{"duration":10,"tweenEasing":0,"rotate":-64.69},{"duration":5,"tweenEasing":0,"rotate":-42.6},{"duration":2,"tweenEasing":0,"rotate":-29.05},{"duration":3,"tweenEasing":0,"rotate":-2.5},{"duration":3,"tweenEasing":0,"rotate":2},{"duration":2,"tweenEasing":0,"rotate":14.27},{"duration":3,"tweenEasing":0,"rotate":37.86},{"duration":4,"tweenEasing":0,"rotate":71.48},{"duration":3,"tweenEasing":0,"rotate":61.96},{"duration":4,"tweenEasing":0,"rotate":63.96},{"duration":5,"tweenEasing":0,"rotate":67.22},{"duration":0,"rotate":63.46}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":16,"x":1.02,"y":0.99}]},{"name":"thigh_l","translateFrame":[{"tweenEasing":0,"x":-0.35,"y":2.85},{"duration":5,"tweenEasing":0,"x":-0.32,"y":4.22},{"duration":3,"tweenEasing":0,"x":-0.64,"y":3.87},{"tweenEasing":0,"x":-1.17,"y":3.12},{"duration":2,"tweenEasing":0,"x":-1.12,"y":2.45},{"duration":10,"tweenEasing":0,"x":-1.24,"y":1.98},{"duration":10,"tweenEasing":0,"x":-1.16,"y":2.48},{"duration":5,"tweenEasing":0,"x":-1.47,"y":3.46},{"duration":2,"tweenEasing":0,"x":-1.54,"y":3.21},{"duration":3,"tweenEasing":0,"x":-1.52,"y":2.82},{"duration":3,"tweenEasing":0,"x":-0.02,"y":1.35},{"duration":2,"tweenEasing":0,"x":0.09,"y":2.61},{"duration":3,"tweenEasing":0,"x":-0.91,"y":3.82},{"duration":4,"tweenEasing":0,"x":-2.08,"y":4.29},{"duration":3,"tweenEasing":0,"x":-2.18,"y":3.8},{"duration":4,"tweenEasing":0,"x":-0.69,"y":3.67},{"duration":5,"tweenEasing":0,"x":-0.67,"y":3.66},{"duration":0,"x":-1.32,"y":3.62}],"rotateFrame":[{"tweenEasing":0,"rotate":-23.85},{"duration":5,"tweenEasing":0,"rotate":39},{"duration":3,"tweenEasing":0,"rotate":-6.78},{"tweenEasing":0,"rotate":12.3},{"duration":2,"tweenEasing":0,"rotate":19.83},{"duration":10,"tweenEasing":0,"rotate":16.07},{"duration":10,"tweenEasing":0,"rotate":-1.5},{"duration":5,"tweenEasing":0,"rotate":32.36},{"duration":2,"tweenEasing":0,"rotate":36.86},{"duration":3,"tweenEasing":0,"rotate":49.37},{"duration":3,"tweenEasing":0,"rotate":66.15},{"duration":2,"tweenEasing":0,"rotate":87.74},{"duration":3,"tweenEasing":0,"rotate":100.55},{"duration":4,"tweenEasing":0,"rotate":114.09},{"duration":3,"tweenEasing":0,"rotate":118.87},{"duration":4,"tweenEasing":0,"rotate":120.64},{"duration":5,"tweenEasing":0,"rotate":117.35},{"duration":0,"rotate":116.86}],"scaleFrame":[{"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":0.77,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.91},{"tweenEasing":0,"x":0.9},{"duration":2,"tweenEasing":0,"x":0.89},{"duration":10,"tweenEasing":0,"x":0.87},{"duration":10,"tweenEasing":0,"x":0.9},{"duration":5,"tweenEasing":0,"x":0.86,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.89,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.81,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.91},{"duration":2,"tweenEasing":0,"x":0.93},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":4,"tweenEasing":0,"x":0.92,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.73,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":5,"tweenEasing":0,"x":0.82,"y":1.01},{"duration":0,"x":0.79,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.04},{"tweenEasing":0,"x":-0.03,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":10,"tweenEasing":0,"x":-0.06,"y":-0.02},{"duration":10,"tweenEasing":0,"x":-0.04,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.02},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.04},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.06},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.04},{"duration":4,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.02,"y":-0.06},{"duration":0,"x":0.02,"y":-0.03}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":31.33},{"duration":3,"tweenEasing":0,"rotate":45.37},{"tweenEasing":0,"rotate":32.33},{"duration":2,"tweenEasing":0,"rotate":30.83},{"duration":10,"tweenEasing":0,"rotate":51.13},{"duration":10,"tweenEasing":0,"rotate":64.19},{"duration":5,"tweenEasing":0,"rotate":57.91},{"duration":2,"tweenEasing":0,"rotate":66.96},{"duration":3,"tweenEasing":0,"rotate":78.23},{"duration":3,"tweenEasing":0,"rotate":63.48},{"duration":2,"tweenEasing":0,"rotate":50.96},{"duration":3,"tweenEasing":0,"rotate":43.38},{"duration":4,"tweenEasing":0,"rotate":39.35},{"duration":3,"tweenEasing":0,"rotate":31.56},{"duration":4,"tweenEasing":0,"rotate":15.28},{"duration":5,"tweenEasing":0,"rotate":10.01},{"duration":0,"rotate":16.53}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04},{"tweenEasing":0,"x":1.04,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":10,"tweenEasing":0,"x":1.02},{"duration":10,"tweenEasing":0,"x":1.03},{"duration":5,"tweenEasing":0,"x":1.04},{"duration":2,"tweenEasing":0,"x":1.04},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":4,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.05},{"duration":4,"tweenEasing":0,"x":1.05},{"duration":5,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":0,"x":1.05}]},{"name":"calf_l","translateFrame":[{"tweenEasing":0,"x":-0.04},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.12},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.03},{"tweenEasing":0,"x":0.05,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.05,"y":-0.07},{"duration":10,"tweenEasing":0,"x":0.07,"y":-0.06},{"duration":10,"tweenEasing":0,"x":0.03,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.04,"y":-0.12},{"duration":2,"tweenEasing":0,"x":0.04,"y":-0.06},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.03,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.04,"y":-0.07},{"duration":3,"tweenEasing":0,"x":-0.05,"y":-0.07},{"duration":4,"tweenEasing":0,"x":-0.05,"y":-0.04},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.08},{"duration":4,"tweenEasing":0,"x":-0.04,"y":-0.07},{"duration":5,"tweenEasing":0,"x":-0.06,"y":-0.05},{"duration":0,"x":-0.05,"y":-0.06}],"rotateFrame":[{"tweenEasing":0,"rotate":41.36},{"duration":5,"tweenEasing":0,"rotate":16.91},{"duration":3,"tweenEasing":0,"rotate":40.79},{"tweenEasing":0,"rotate":14.94},{"duration":2,"tweenEasing":0,"rotate":6.91},{"duration":10,"tweenEasing":0,"rotate":24.2},{"duration":10,"tweenEasing":0,"rotate":45.3},{"duration":5,"tweenEasing":0,"rotate":8.15},{"duration":2,"tweenEasing":0,"rotate":22.24},{"duration":3,"tweenEasing":0,"rotate":48.05},{"duration":3,"tweenEasing":0,"rotate":31.31},{"duration":2,"tweenEasing":0,"rotate":16.24},{"duration":3,"tweenEasing":0,"rotate":5.93},{"duration":4,"tweenEasing":0,"rotate":-6.36},{"duration":3,"tweenEasing":0,"rotate":16.85},{"duration":4,"tweenEasing":0,"rotate":10.27},{"duration":5,"tweenEasing":0,"rotate":-5.17},{"duration":0,"rotate":-6.69}],"scaleFrame":[{"tweenEasing":0,"x":0.95},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.99},{"duration":4,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.05,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.05,"y":0.99},{"duration":5,"x":1.03}]},{"name":"foot_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.18,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.21,"y":-0.01},{"tweenEasing":0,"x":-0.21,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.2,"y":-0.01},{"duration":10,"tweenEasing":0,"x":-0.21,"y":-0.06},{"duration":10,"tweenEasing":0,"x":-0.2,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.22},{"duration":2,"tweenEasing":0,"x":-0.21},{"duration":3,"tweenEasing":0,"x":-0.21,"y":0.01},{"duration":3,"tweenEasing":0,"x":-0.25},{"duration":2,"tweenEasing":0,"x":-0.26,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.25,"y":0.02},{"duration":4,"tweenEasing":0,"x":-0.18,"y":0.01},{"duration":3,"tweenEasing":0,"x":-0.19,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.22,"y":0.01},{"duration":5,"tweenEasing":0,"x":-0.22,"y":0.03},{"duration":0,"x":-0.22,"y":0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":13.28},{"duration":3,"tweenEasing":0,"rotate":3.76},{"tweenEasing":0,"rotate":12.78},{"duration":2,"tweenEasing":0,"rotate":14.03},{"duration":10,"tweenEasing":0,"rotate":3.51},{"duration":10,"tweenEasing":0,"rotate":0.75},{"duration":5,"tweenEasing":0,"rotate":-15.05},{"duration":2,"tweenEasing":0,"rotate":48.6},{"duration":3,"tweenEasing":0,"rotate":27.29},{"duration":3,"tweenEasing":0,"rotate":49.32},{"duration":2,"tweenEasing":0,"rotate":65.14},{"duration":3,"tweenEasing":0,"rotate":51.39},{"duration":4,"tweenEasing":0,"rotate":12.5},{"duration":3,"tweenEasing":0,"rotate":53.41},{"duration":4,"tweenEasing":0,"rotate":38.58},{"duration":5,"tweenEasing":0,"rotate":35.06},{"duration":0,"rotate":35.57}],"scaleFrame":[{"duration":32,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.92},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":0,"y":0.99}]},{"name":"foot_l","translateFrame":[{"tweenEasing":0,"x":1.51,"y":-0.15},{"duration":5,"tweenEasing":0,"x":1.38,"y":-0.19},{"duration":3,"tweenEasing":0,"x":1.4,"y":-0.19},{"tweenEasing":0,"x":1.43,"y":-0.18},{"duration":2,"tweenEasing":0,"x":1.44,"y":-0.2},{"duration":10,"tweenEasing":0,"x":1.41,"y":-0.2},{"duration":10,"tweenEasing":0,"x":1.4,"y":-0.2},{"duration":5,"tweenEasing":0,"x":1.4,"y":-0.2},{"duration":2,"tweenEasing":0,"x":1.43,"y":-0.18},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.17},{"duration":3,"tweenEasing":0,"x":1.39,"y":-0.16},{"duration":2,"tweenEasing":0,"x":1.37,"y":-0.13},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.13},{"duration":4,"tweenEasing":0,"x":1.37,"y":-0.14},{"duration":3,"tweenEasing":0,"x":1.42,"y":-0.12},{"duration":4,"tweenEasing":0,"x":1.4,"y":-0.11},{"duration":5,"tweenEasing":0,"x":1.37,"y":-0.12},{"duration":0,"x":1.38,"y":-0.1}],"rotateFrame":[{"tweenEasing":0,"rotate":-17.55},{"duration":5,"tweenEasing":0,"rotate":-55.87},{"duration":3,"tweenEasing":0,"rotate":-34.03},{"tweenEasing":0,"rotate":-27.28},{"duration":2,"tweenEasing":0,"rotate":-26.79},{"duration":10,"tweenEasing":0,"rotate":-40.34},{"duration":10,"tweenEasing":0,"rotate":-43.84},{"duration":5,"tweenEasing":0,"rotate":-40.58},{"duration":2,"tweenEasing":0,"rotate":27.58},{"duration":3,"tweenEasing":0,"rotate":-2.01},{"duration":3,"tweenEasing":0,"rotate":25.82},{"duration":2,"tweenEasing":0,"rotate":8.52},{"duration":3,"tweenEasing":0,"rotate":1.76},{"duration":4,"tweenEasing":0,"rotate":5.03},{"duration":3,"tweenEasing":0,"rotate":-6.71},{"duration":4,"tweenEasing":0,"rotate":13.13},{"duration":5,"tweenEasing":0,"rotate":1.29},{"duration":0,"rotate":2.29}],"scaleFrame":[{"duration":32,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.03},{"duration":8,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":5,"x":1.03,"y":0.99}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":66,"value":-1}]}]},{"duration":14,"fadeInTime":0.2,"name":"Atk1","frame":[{"duration":4},{"duration":0,"sound":"200025"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.01},{"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.29,"y":0.01},{"duration":4,"tweenEasing":0,"y":-0.02},{"duration":0,"x":0.2,"y":-0.1}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-5.75},{"tweenEasing":0,"rotate":0.25},{"duration":2,"tweenEasing":0,"rotate":13.52},{"duration":2,"tweenEasing":0,"rotate":22.3},{"duration":4,"tweenEasing":0,"rotate":24.3},{"duration":0,"rotate":17.78}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":0.99},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0,"x":0.99},{"duration":0,"x":0.96}]},{"name":"chest","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":-0.21},{"tweenEasing":0,"x":-0.16,"y":0.02},{"duration":2,"tweenEasing":0,"x":-0.29,"y":0.58},{"duration":2,"tweenEasing":0,"x":-0.3,"y":0.68},{"duration":4,"tweenEasing":0,"x":-0.3,"y":0.59},{"duration":0,"x":-0.23,"y":0.36}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":5.96},{"tweenEasing":0,"rotate":7.79},{"duration":2,"tweenEasing":0,"rotate":10.03},{"duration":2,"tweenEasing":0,"rotate":1.45},{"duration":4,"tweenEasing":0,"rotate":-0.75},{"duration":0,"rotate":1.89}],"scaleFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"shouder_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":1.25,"y":-0.19},{"duration":3,"tweenEasing":0,"x":1.89,"y":0.04},{"tweenEasing":0,"x":1.32,"y":1.4},{"duration":4,"tweenEasing":0,"x":-0.3,"y":4.43},{"duration":4,"x":-0.3,"y":4.43},{"duration":0,"x":1.2,"y":6.31}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":-129.6},{"duration":3,"tweenEasing":0,"rotate":167.8},{"tweenEasing":0,"rotate":176.6},{"duration":2,"tweenEasing":0,"rotate":-74.75},{"duration":2,"tweenEasing":0,"rotate":-56.5},{"duration":4,"tweenEasing":0,"rotate":-60.7},{"duration":0,"rotate":-54.25}]},{"name":"shouder_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.34,"y":-0.34},{"tweenEasing":0,"x":-1.39,"y":-5.16},{"duration":2,"tweenEasing":0,"x":4.2,"y":-17.25},{"duration":2,"tweenEasing":0,"x":3.45,"y":-17.67},{"duration":4,"x":3.47,"y":-17.23},{"duration":0,"x":3.77,"y":-12.36}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-48.37},{"tweenEasing":0,"rotate":1.39},{"duration":2,"tweenEasing":0,"rotate":24.27},{"duration":2,"tweenEasing":0,"rotate":24.73},{"duration":4,"tweenEasing":0,"rotate":26.04},{"duration":0,"rotate":13.44}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.99},{"tweenEasing":0,"x":0.67},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.06},{"duration":4,"tweenEasing":0,"x":1.06},{"duration":0,"x":1.04}]},{"name":"forearm_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.17,"y":0.16},{"tweenEasing":0,"x":0.24,"y":-0.05},{"duration":2,"tweenEasing":0,"x":0.64,"y":-0.15},{"duration":2,"tweenEasing":0,"x":0.59,"y":-0.05},{"duration":4,"tweenEasing":0,"x":0.59,"y":-0.04},{"duration":0,"x":0.32,"y":1.15}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":12.19},{"tweenEasing":0,"rotate":-34.07},{"duration":2,"tweenEasing":0,"rotate":5.44},{"duration":2,"tweenEasing":0,"rotate":28.28},{"duration":4,"tweenEasing":0,"rotate":24.27},{"duration":0,"rotate":1.22}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.78,"y":1.01},{"tweenEasing":0,"x":0.95,"y":1.01},{"duration":2,"tweenEasing":0,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.25,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.13,"y":1.01},{"duration":0,"x":1.15,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":0.87,"y":0.13},{"duration":3,"tweenEasing":0,"x":0.88,"y":0.13},{"tweenEasing":0,"x":1.07,"y":0.14},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.25},{"duration":2,"tweenEasing":0,"x":1.16,"y":0.19},{"duration":4,"tweenEasing":0,"x":1.08,"y":0.23},{"duration":0,"x":0.2,"y":-0.14}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":12.78},{"duration":3,"tweenEasing":0,"rotate":12.78},{"tweenEasing":0,"rotate":-15.8},{"duration":2,"tweenEasing":0,"rotate":0.41},{"duration":2,"tweenEasing":0,"rotate":-14.66},{"duration":4,"tweenEasing":0,"rotate":14.63},{"duration":0,"rotate":2.97}],"scaleFrame":[{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":1.02},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":0,"x":1.02}]},{"name":"hand_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":0.08,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.07,"y":-0.07},{"tweenEasing":0,"x":0.19,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.06},{"duration":4,"tweenEasing":0,"x":0.07,"y":-0.02},{"duration":0,"x":-0.55,"y":-0.14}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":6.76},{"duration":3,"tweenEasing":0,"rotate":6.75},{"tweenEasing":0,"rotate":-2.5},{"duration":2,"tweenEasing":0,"rotate":76.22},{"duration":2,"tweenEasing":0,"rotate":58.71},{"duration":4,"tweenEasing":0,"rotate":41.93},{"duration":0,"rotate":38.08}],"scaleFrame":[{"duration":2,"tweenEasing":0,"x":1.17},{"duration":3,"tweenEasing":0,"x":1.17},{"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.94},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.17},{"tweenEasing":0,"x":-0.1,"y":0.22},{"duration":2,"tweenEasing":0,"x":-2.59,"y":-0.13},{"duration":2,"tweenEasing":0,"x":-2.74,"y":-0.17},{"duration":4,"tweenEasing":0,"x":-2.7,"y":-0.17},{"duration":0,"x":-3,"y":-0.12}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-2.57},{"tweenEasing":0,"rotate":4.32},{"duration":2,"tweenEasing":0,"rotate":-19.52},{"duration":2,"tweenEasing":0,"rotate":-14.64},{"duration":4,"tweenEasing":0,"rotate":-0.79},{"duration":0,"rotate":14.44}],"scaleFrame":[{"duration":5,"tweenEasing":0,"y":0.96},{"tweenEasing":0,"y":0.96},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.07,"y":1.19},{"duration":4,"tweenEasing":0,"x":1.02,"y":1.05},{"duration":0,"x":1.02,"y":1.03}]},{"name":"weapon_hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":0,"x":0.01,"y":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":3.1},{"tweenEasing":0,"rotate":32.41},{"duration":2,"tweenEasing":0,"rotate":6.87},{"duration":2,"tweenEasing":0,"rotate":-13.06},{"duration":4,"tweenEasing":0,"rotate":-13.08},{"duration":0,"rotate":-8.52}]},{"name":"weapon_hand_r","translateFrame":[{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":-96.78},{"duration":3,"tweenEasing":0,"rotate":-156.22},{"tweenEasing":0,"clockwise":1,"rotate":-179.75},{"duration":2,"tweenEasing":0,"rotate":38.81},{"duration":2,"tweenEasing":0,"rotate":39.31},{"duration":4,"tweenEasing":0,"rotate":29.29},{"duration":0,"rotate":15.52}]},{"name":"effect_r","translateFrame":[{"duration":12},{"tweenEasing":0,"x":23.95,"y":-15.22},{"x":40.96,"y":-23.57}],"rotateFrame":[{"duration":12},{"tweenEasing":0,"rotate":-9.42},{"rotate":-15.64}],"scaleFrame":[{"duration":11},{"tweenEasing":0,"x":1.21,"y":1.22},{"tweenEasing":0},{"x":0.7,"y":0.7}]},{"name":"root","translateFrame":[{"duration":5,"tweenEasing":0,"x":3.76,"y":-0.07},{"tweenEasing":0,"x":1.45,"y":3.01},{"duration":4,"tweenEasing":0,"x":0.54,"y":4.31},{"duration":4,"tweenEasing":0,"x":1,"y":4.59},{"duration":0,"x":0.67,"y":3.07}]},{"name":"thigh_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.14,"y":0.38},{"tweenEasing":0,"x":1.11,"y":-3.46},{"duration":2,"tweenEasing":0,"x":2.01,"y":-7.84},{"duration":2,"tweenEasing":0,"x":2.72,"y":-8.01},{"duration":4,"tweenEasing":0,"x":2.67,"y":-7.55},{"duration":0,"x":1.77,"y":-5.04}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":4.5},{"tweenEasing":0,"rotate":-0.5},{"duration":2,"tweenEasing":0,"rotate":27.82},{"duration":2,"tweenEasing":0,"rotate":29.32},{"duration":4,"tweenEasing":0,"rotate":26.56},{"duration":0,"rotate":17.58}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"thigh_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.14,"y":-0.41},{"tweenEasing":0,"x":-1.09,"y":3.38},{"duration":2,"tweenEasing":0,"x":-1.98,"y":7.68},{"duration":2,"tweenEasing":0,"x":-2.11,"y":7.9},{"duration":4,"tweenEasing":0,"x":-2.64,"y":7.4},{"duration":0,"x":-1.77,"y":4.93}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":15.06},{"tweenEasing":0,"rotate":-33.12},{"duration":2,"tweenEasing":0,"rotate":-10.04},{"duration":2,"tweenEasing":0,"rotate":-10.04},{"duration":4,"tweenEasing":0,"rotate":-7.03},{"duration":0,"rotate":-4.75}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.96,"y":1.01},{"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"x":0.98,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":-0.01},{"tweenEasing":0,"x":0.01,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":0,"x":0.07,"y":-1.21}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":10.3},{"tweenEasing":0,"rotate":39.9},{"duration":2,"tweenEasing":0,"rotate":19.86},{"duration":2,"tweenEasing":0,"rotate":22.62},{"duration":4,"tweenEasing":0,"rotate":26.38},{"duration":0,"rotate":25.1}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":0.99,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":0.01},{"tweenEasing":0,"x":-0.04,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.03},{"duration":2,"tweenEasing":0,"x":-0.03},{"duration":4,"tweenEasing":0,"x":-0.03,"y":-0.01},{"duration":0,"x":-0.03}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":5.94},{"tweenEasing":0,"rotate":32.87},{"duration":2,"tweenEasing":0,"rotate":-32.11},{"duration":2,"tweenEasing":0,"rotate":-32.11},{"duration":4,"tweenEasing":0,"rotate":-32.1},{"duration":0,"rotate":-21.33}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.96},{"tweenEasing":0,"x":0.93},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0,"x":1.21},{"duration":0,"x":1.14}]},{"name":"foot_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.19,"y":-0.02},{"tweenEasing":0,"x":-0.2,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.22,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.22,"y":0.01},{"duration":4,"tweenEasing":0,"x":-0.22},{"duration":0,"x":-0.27,"y":0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-4.04},{"tweenEasing":0,"rotate":-35.15},{"duration":2,"tweenEasing":0,"rotate":-47.69},{"duration":2,"tweenEasing":0,"rotate":-52.7},{"duration":4,"tweenEasing":0,"rotate":-54.2},{"duration":0,"rotate":-43.45}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":1.01},{"duration":8}]},{"name":"foot_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.07,"y":0.02},{"tweenEasing":0,"x":1.55,"y":-0.04},{"duration":2,"tweenEasing":0,"x":1.47,"y":-0.06},{"duration":2,"tweenEasing":0,"x":1.48,"y":-0.05},{"duration":4,"tweenEasing":0,"x":-0.08,"y":-0.06},{"duration":0,"x":-0.42,"y":-0.31}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-21.05},{"tweenEasing":0,"rotate":0.19},{"duration":2,"tweenEasing":0,"rotate":42.16},{"duration":2,"tweenEasing":0,"rotate":42.15},{"duration":4,"tweenEasing":0,"rotate":39.26},{"duration":0,"rotate":26.17}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":6,"value":-1},{"duration":8}],"colorFrame":[{"duration":6},{"duration":5},{"value":{"aM":62}},{"value":{"aM":23}},{"value":{"aM":6}}]}]},{"duration":48,"fadeInTime":0.2,"name":"Atk3","frame":[{"duration":33},{"sound":"200029"},{"duration":0,"events":[{"name":"onTimeStart"}]}],"bone":[{"name":"pelvis","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"duration":35,"tweenEasing":0,"y":-0.01},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.14},{"duration":3,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":23.05},{"duration":31,"tweenEasing":0,"rotate":7.25},{"duration":2,"tweenEasing":0,"rotate":-22.53},{"duration":2,"tweenEasing":0,"rotate":23.8},{"duration":4,"tweenEasing":0,"rotate":49.66},{"duration":3,"tweenEasing":0,"rotate":39.11},{"duration":3,"tweenEasing":0,"rotate":24.81},{"duration":0,"rotate":12.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":31,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":0,"x":0.99}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.15,"y":0.08},{"duration":31,"tweenEasing":0,"x":-0.04,"y":0.16},{"duration":2,"tweenEasing":0,"x":-0.24,"y":1.07},{"duration":2,"tweenEasing":0,"x":-0.28,"y":-0.38},{"duration":4,"tweenEasing":0,"x":-0.8,"y":-1.94},{"duration":3,"tweenEasing":0,"x":-0.88,"y":-2.45},{"duration":3,"tweenEasing":0,"x":-0.55,"y":-2.06},{"duration":0,"x":-0.14,"y":-1.07}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.69},{"duration":31,"tweenEasing":0,"rotate":-3.4},{"duration":2,"tweenEasing":0,"rotate":1.59},{"duration":2,"tweenEasing":0,"rotate":47.72},{"duration":4,"tweenEasing":0,"rotate":23.57},{"duration":3,"tweenEasing":0,"rotate":30.93},{"duration":3,"tweenEasing":0,"rotate":22.58},{"duration":0,"rotate":11.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":31,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":0,"x":0.99}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-2.16,"y":6.54},{"duration":2,"tweenEasing":0,"x":-0.78,"y":6.22},{"duration":29,"tweenEasing":0,"x":-1.47,"y":6.73},{"duration":2,"tweenEasing":0,"x":-0.62,"y":7.1},{"duration":2,"tweenEasing":0,"x":-3.24,"y":11.37},{"duration":4,"tweenEasing":0,"x":-3.25,"y":11.5},{"duration":3,"tweenEasing":0,"x":-3.43,"y":10.87},{"duration":3,"tweenEasing":0,"x":-1.26,"y":7.59},{"duration":0,"x":-0.88,"y":6.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-32.21},{"duration":2,"tweenEasing":0,"rotate":-26.21},{"duration":29,"tweenEasing":0,"rotate":-56.66},{"duration":2,"tweenEasing":0,"rotate":-179.92},{"duration":2,"tweenEasing":0,"rotate":-100.73},{"duration":4,"tweenEasing":0,"rotate":-102.06},{"duration":3,"tweenEasing":0,"rotate":-113.23},{"duration":3,"tweenEasing":0,"rotate":-70.65},{"duration":0,"rotate":-31.81}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":4.9,"y":-9.52},{"duration":2,"tweenEasing":0,"x":2.89,"y":-7.56},{"duration":29,"tweenEasing":0,"x":2.64,"y":-7.28},{"duration":2,"tweenEasing":0,"x":1.37,"y":-7.87},{"duration":2,"tweenEasing":0,"x":4.56,"y":-11.44},{"duration":4,"tweenEasing":0,"x":3.7,"y":-11.38},{"duration":3,"tweenEasing":0,"x":4.77,"y":-11.2},{"duration":3,"tweenEasing":0,"x":4.44,"y":-9.48},{"duration":0,"x":2.47,"y":-6.28}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-2.11},{"duration":2,"tweenEasing":0,"rotate":-7.16},{"duration":29,"tweenEasing":0,"rotate":-40.37},{"duration":2,"tweenEasing":0,"rotate":-126.51},{"duration":2,"tweenEasing":0,"rotate":-54.13},{"duration":4,"tweenEasing":0,"rotate":-56.46},{"duration":3,"tweenEasing":0,"rotate":-59.88},{"duration":3,"tweenEasing":0,"rotate":-43.84},{"duration":0,"rotate":-21.78}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":29,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.96},{"duration":0,"x":0.99}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.76,"y":-0.15},{"duration":2,"tweenEasing":0,"x":0.81},{"duration":29,"tweenEasing":0,"x":0.79,"y":0.1},{"duration":2,"tweenEasing":0,"x":0.95,"y":-0.19},{"duration":2,"tweenEasing":0,"x":0.75,"y":-0.02},{"duration":4,"tweenEasing":0,"x":0.71,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.71,"y":0.02},{"duration":3,"tweenEasing":0,"x":0.73,"y":-0.01},{"duration":0,"x":0.28}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-10.87},{"duration":2,"tweenEasing":0,"rotate":-22.37},{"duration":29,"tweenEasing":0,"rotate":-31.14},{"duration":2,"tweenEasing":0,"rotate":-41.66},{"duration":2,"tweenEasing":0,"rotate":-36.65},{"duration":4,"tweenEasing":0,"rotate":-42.16},{"duration":3,"tweenEasing":0,"rotate":-37.89},{"duration":3,"tweenEasing":0,"rotate":-5.03},{"duration":0,"rotate":-2.51}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.91,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":29,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":0,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.1,"y":0.18},{"duration":2,"tweenEasing":0,"x":0.85,"y":0.22},{"duration":29,"tweenEasing":0,"x":0.25,"y":0.04},{"duration":2,"tweenEasing":0,"x":1.33,"y":0.2},{"duration":2,"tweenEasing":0,"x":1.22,"y":0.18},{"duration":4,"tweenEasing":0,"x":1.17,"y":0.18},{"duration":3,"tweenEasing":0,"x":1.21,"y":0.16},{"duration":3,"tweenEasing":0,"x":1.24,"y":0.21},{"duration":0,"x":1.03,"y":0.18}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-5.79},{"duration":2,"tweenEasing":0,"rotate":-33.15},{"duration":29,"tweenEasing":0,"rotate":-45.42},{"duration":2,"tweenEasing":0,"rotate":12.03},{"duration":2,"tweenEasing":0,"rotate":-11.34},{"duration":4,"tweenEasing":0,"rotate":-0.79},{"duration":3,"tweenEasing":0,"rotate":6.95},{"duration":3,"tweenEasing":0,"rotate":-7.3},{"duration":0,"rotate":-9.52}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.93,"y":0.99},{"duration":29,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":0,"x":1.02,"y":0.99}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.1,"y":-0.05},{"duration":2,"tweenEasing":0,"x":0.16,"y":-0.24},{"duration":29,"tweenEasing":0,"x":0.37,"y":-0.22},{"duration":2,"tweenEasing":0,"x":0.15,"y":-0.06},{"duration":2,"tweenEasing":0,"x":0.2,"y":-0.07},{"duration":4,"tweenEasing":0,"x":0.17,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.16,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.02},{"duration":0,"x":0.09,"y":-0.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":12.01},{"duration":2,"tweenEasing":0,"rotate":18.07},{"duration":29,"tweenEasing":0,"rotate":18.27},{"duration":2,"tweenEasing":0,"rotate":-6.26},{"duration":2,"tweenEasing":0,"rotate":48.15},{"duration":4,"tweenEasing":0,"rotate":37.86},{"duration":3,"tweenEasing":0,"rotate":44.89},{"duration":3,"tweenEasing":0,"rotate":46.12},{"duration":0,"rotate":34.82}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99},{"duration":2,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":29,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":6,"x":0.98}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.07,"y":0.11},{"duration":2,"tweenEasing":0,"x":-0.01,"y":0.19},{"duration":29,"tweenEasing":0,"x":-0.01,"y":0.07},{"duration":2,"tweenEasing":0,"x":0.34,"y":0.28},{"duration":2,"tweenEasing":0,"x":-0.03,"y":0.14},{"duration":4,"tweenEasing":0,"x":-0.04,"y":0.12},{"duration":3,"tweenEasing":0,"x":-0.04,"y":0.13},{"duration":3,"tweenEasing":0,"x":-0.02,"y":0.11},{"duration":0,"y":0.06}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":11.13},{"duration":2,"tweenEasing":0,"rotate":14.81},{"duration":29,"tweenEasing":0,"rotate":13.5},{"duration":2,"tweenEasing":0,"rotate":-0.66},{"duration":2,"tweenEasing":0,"rotate":51.14},{"duration":4,"tweenEasing":0,"rotate":57.16},{"duration":3,"tweenEasing":0,"rotate":59.68},{"duration":3,"tweenEasing":0,"rotate":39.57},{"duration":0,"rotate":19.81}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98,"y":0.93},{"duration":2,"tweenEasing":0,"y":1.01},{"duration":29,"tweenEasing":0,"x":1.01,"y":1.02},{"duration":2,"tweenEasing":0,"x":1.11,"y":1.34},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"y":0.98},{"duration":0,"x":1.01,"y":0.99}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":29,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":4,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":0,"x":0.01,"y":0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.59},{"duration":2,"tweenEasing":0,"rotate":19.03},{"duration":29,"tweenEasing":0,"rotate":16.97},{"duration":2,"tweenEasing":0,"rotate":13.9},{"duration":6,"tweenEasing":0,"rotate":18.48},{"duration":3,"tweenEasing":0,"rotate":18.48},{"duration":3,"tweenEasing":0,"rotate":17.86},{"duration":0,"rotate":9.1}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":-0.01},{"duration":29,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.01},{"duration":0,"y":0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":31.29},{"duration":2,"tweenEasing":0,"rotate":-28.61},{"duration":29,"tweenEasing":0,"rotate":-69.47},{"duration":2,"tweenEasing":0,"rotate":176.49},{"duration":2,"tweenEasing":0,"rotate":21.15},{"duration":4,"tweenEasing":0,"rotate":22.28},{"duration":3,"tweenEasing":0,"rotate":22.28},{"duration":3,"tweenEasing":0,"rotate":28.28},{"duration":0,"rotate":32.29}]},{"name":"effect_r","translateFrame":[{"duration":5,"x":-26.3,"y":-41.21},{"duration":28,"tweenEasing":0,"x":-26.3,"y":-41.21},{"duration":3,"x":-26.78,"y":-51.93},{"duration":4,"tweenEasing":0,"x":-1.03,"y":1.03},{"duration":3,"x":-1.03,"y":1.03},{"tweenEasing":0,"x":10.17,"y":6.63},{"duration":4,"x":30.97,"y":5.03}],"rotateFrame":[{"duration":33,"rotate":35.08},{"duration":3,"rotate":35.08},{"duration":12,"rotate":7.52}],"scaleFrame":[{"duration":33,"x":0.18,"y":0.16},{"duration":3,"x":0.18,"y":0.16},{"duration":4,"tweenEasing":0,"x":1.21,"y":1.09},{"duration":2,"x":1.68,"y":1.51},{"tweenEasing":0,"x":1.87,"y":1.68},{"tweenEasing":0,"x":1.63,"y":1.47},{"duration":4,"x":0.93,"y":0.84}]},{"name":"root","translateFrame":[{"duration":3,"tweenEasing":0,"x":-3.02,"y":5.91},{"duration":31,"tweenEasing":0,"x":6.06,"y":-12.9},{"duration":2,"tweenEasing":0,"x":7.94,"y":-22.23},{"duration":2,"tweenEasing":0,"x":2.9,"y":6.9},{"duration":7,"tweenEasing":0,"x":2.76,"y":6.68},{"duration":3,"tweenEasing":0,"x":2.3,"y":6.53},{"duration":0,"x":1.15,"y":3.27}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.76,"y":-2.17},{"duration":31,"tweenEasing":0,"x":-0.6,"y":-2.49},{"duration":2,"tweenEasing":0,"x":0.34,"y":-3.43},{"duration":2,"tweenEasing":0,"x":1.02,"y":-3.12},{"duration":4,"tweenEasing":0,"x":1.01,"y":-3.39},{"duration":3,"tweenEasing":0,"x":2.54,"y":-3.36},{"duration":3,"tweenEasing":0,"x":0.96,"y":-3.47},{"duration":0,"x":-0.89,"y":-1.82}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-63.19},{"duration":31,"tweenEasing":0,"rotate":-33.31},{"duration":2,"tweenEasing":0,"rotate":-11.76},{"duration":2,"tweenEasing":0,"rotate":-0.5},{"duration":4,"tweenEasing":0,"rotate":1},{"duration":3,"tweenEasing":0,"rotate":-1.59},{"duration":3,"tweenEasing":0,"rotate":5.01},{"duration":0,"rotate":5.51}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":31,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":0.9},{"duration":4,"tweenEasing":0,"x":0.91},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":0,"x":0.92}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.74,"y":2.15},{"duration":2,"tweenEasing":0,"x":0.6,"y":2.43},{"duration":29,"tweenEasing":0,"x":-1.05,"y":1.09},{"duration":2,"tweenEasing":0,"x":-0.33,"y":3.36},{"duration":2,"tweenEasing":0,"x":-1,"y":3.07},{"duration":4,"tweenEasing":0,"x":-0.98,"y":3.3},{"duration":3,"tweenEasing":0,"x":0.2,"y":3.03},{"duration":3,"tweenEasing":0,"x":-0.93,"y":3.4},{"duration":0,"x":-0.48,"y":1.71}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-43.89},{"duration":2,"tweenEasing":0,"rotate":37.86},{"duration":29,"tweenEasing":0,"rotate":-63.16},{"duration":2,"tweenEasing":0,"rotate":-39.39},{"duration":2,"tweenEasing":0,"rotate":-61.15},{"duration":4,"tweenEasing":0,"rotate":-63.15},{"duration":3,"tweenEasing":0,"rotate":-78.7},{"duration":3,"tweenEasing":0,"rotate":-66.92},{"duration":0,"rotate":-33.58}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":29,"tweenEasing":0,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.9,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.97},{"duration":3,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.04},{"duration":31,"tweenEasing":0,"x":0.04,"y":-0.11},{"duration":2,"tweenEasing":0,"x":0.14,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.02},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":0,"x":0.01,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":97.06},{"duration":31,"tweenEasing":0,"rotate":81.5},{"duration":2,"tweenEasing":0,"rotate":11.26},{"duration":2,"tweenEasing":0,"rotate":58.17},{"duration":4,"tweenEasing":0,"rotate":56.18},{"duration":3,"tweenEasing":0,"rotate":65.16},{"duration":3,"tweenEasing":0,"rotate":48.14},{"duration":0,"rotate":13.54}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":31,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":4,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":0,"x":0.95,"y":0.99}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.03,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.07,"y":-0.02},{"duration":29,"tweenEasing":0,"x":0.06,"y":-0.1},{"duration":2,"tweenEasing":0,"x":0.04,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.1},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.08},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.08},{"duration":3,"tweenEasing":0,"y":-0.06},{"duration":0,"x":-0.95}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":17.05},{"duration":2,"tweenEasing":0,"rotate":-17.87},{"duration":29,"tweenEasing":0,"rotate":103.48},{"duration":2,"tweenEasing":0,"rotate":56.4},{"duration":2,"tweenEasing":0,"rotate":68.88},{"duration":4,"tweenEasing":0,"rotate":69.4},{"duration":3,"tweenEasing":0,"rotate":82.2},{"duration":3,"tweenEasing":0,"rotate":71.17},{"duration":0,"rotate":35.8}],"scaleFrame":[{"duration":3,"tweenEasing":0,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":29,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.77},{"duration":4,"tweenEasing":0,"x":0.81},{"duration":3,"tweenEasing":0,"x":0.85},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":0,"x":0.94}]},{"name":"foot_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.02,"y":-0.02},{"duration":31,"tweenEasing":0,"x":-0.06,"y":-0.06},{"duration":2,"tweenEasing":0,"x":-0.02,"y":0.03},{"duration":2,"tweenEasing":0,"x":-0.2},{"duration":4,"tweenEasing":0,"x":-0.2,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.19},{"duration":3,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":0,"x":0.03,"y":-0.04}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-33.88},{"duration":31,"tweenEasing":0,"rotate":13},{"duration":2,"tweenEasing":0,"rotate":43.62},{"duration":2,"tweenEasing":0,"rotate":-56.95},{"duration":4,"tweenEasing":0,"rotate":-56.21},{"duration":3,"tweenEasing":0,"rotate":-62.46},{"duration":3,"tweenEasing":0,"rotate":-51.69},{"duration":0,"rotate":-17.16}],"scaleFrame":[{"duration":3,"tweenEasing":0},{"duration":31,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":12}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":0.02},{"duration":2,"tweenEasing":0,"x":1.61,"y":-0.08},{"duration":29,"tweenEasing":0,"x":1.84,"y":-0.11},{"duration":2,"tweenEasing":0,"x":1.76,"y":-0.03},{"duration":2,"tweenEasing":0,"x":1.61,"y":-0.01},{"duration":4,"tweenEasing":0,"x":1.6,"y":-0.01},{"duration":3,"tweenEasing":0,"x":1.58,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.02},{"duration":0,"x":0.72,"y":-0.03}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":26.83},{"duration":2,"tweenEasing":0,"rotate":8.27},{"duration":29,"tweenEasing":0,"rotate":-20.08},{"duration":2,"tweenEasing":0,"rotate":4.75},{"duration":2,"tweenEasing":0,"rotate":-7.97},{"duration":4,"tweenEasing":0,"rotate":-6.42},{"duration":3,"tweenEasing":0,"rotate":-3.63},{"duration":3,"tweenEasing":0,"rotate":-4.23},{"duration":0,"rotate":-2.27}],"scaleFrame":[{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.99},{"duration":29,"tweenEasing":0,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":12}]}],"slot":[{"name":"effect_r","colorFrame":[{"duration":34,"value":{"aM":0}},{"duration":2,"value":{"aM":0}},{"duration":5},{},{"value":{"aM":44}},{"duration":2,"value":{"aM":10}},{"duration":3,"value":{"aM":6}}]}]},{"duration":14,"fadeInTime":0.2,"name":"Atk2","frame":[{"duration":5},{"duration":0,"sound":"200026"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.02},{"tweenEasing":0,"x":0.01,"y":-0.02},{"tweenEasing":0,"x":0.03,"y":0.01},{"duration":7}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-0.25},{"tweenEasing":0,"rotate":-0.25},{"tweenEasing":0,"rotate":-1},{"duration":7,"tweenEasing":0,"rotate":-1.5},{"duration":0,"rotate":-0.25}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.98},{"tweenEasing":0,"x":0.98},{"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":0,"x":1.01}]},{"name":"chest","translateFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":-0.11,"y":0.14},{"duration":7,"tweenEasing":0,"x":-0.13,"y":0.33},{"duration":0,"x":-0.1,"y":0.27}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":10.32},{"tweenEasing":0,"rotate":10.32},{"tweenEasing":0,"rotate":-1.49},{"duration":7,"tweenEasing":0,"rotate":-0.49},{"duration":0,"rotate":-0.3}],"scaleFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0},{"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":0.94},{"duration":0,"x":0.96}]},{"name":"shouder_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.94,"y":-0.76},{"tweenEasing":0,"x":0.16,"y":-0.38},{"tweenEasing":0,"x":-0.99,"y":5.26},{"duration":7,"tweenEasing":0,"x":-0.51,"y":17.06},{"duration":0,"x":-0.41,"y":16.28}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":44.91},{"tweenEasing":0,"rotate":45.66},{"tweenEasing":0,"rotate":61.1},{"duration":7,"tweenEasing":0,"rotate":-91.96},{"duration":0,"rotate":-79.76}]},{"name":"shouder_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.35,"y":-0.86},{"tweenEasing":0,"x":0.45,"y":-0.79},{"tweenEasing":0,"x":1.88,"y":-6.43},{"duration":7,"tweenEasing":0,"x":3.48,"y":-19.49},{"duration":0,"x":3.13,"y":-18.3}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-19.79},{"tweenEasing":0,"rotate":-18.04},{"tweenEasing":0,"rotate":23.73},{"duration":7,"tweenEasing":0,"rotate":44.71},{"duration":0,"rotate":42.09}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.97,"y":1.01},{"tweenEasing":0,"x":0.98},{"tweenEasing":0,"x":0.96},{"duration":7,"tweenEasing":0,"x":1.05},{"duration":0,"x":1.02}]},{"name":"forearm_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.8},{"tweenEasing":0,"x":0.77,"y":0.01},{"tweenEasing":0,"x":0.74,"y":-0.12},{"duration":7,"tweenEasing":0,"x":0.72,"y":-0.07},{"duration":0,"x":0.69,"y":-0.14}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-0.8},{"tweenEasing":0,"rotate":-8.57},{"tweenEasing":0,"rotate":-24.34},{"duration":7,"tweenEasing":0,"rotate":-18.82},{"duration":0,"rotate":-26.6}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":0.93,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.84,"y":1.01},{"duration":0,"x":0.85,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.04},{"tweenEasing":0,"x":0.18,"y":-0.02},{"tweenEasing":0,"x":0.92,"y":0.12},{"duration":7,"tweenEasing":0,"x":1.21,"y":0.22},{"duration":0,"x":1.24,"y":0.19}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-22.9},{"tweenEasing":0,"rotate":-10.41},{"tweenEasing":0,"rotate":-62.21},{"duration":7,"tweenEasing":0,"rotate":3.51},{"duration":0,"rotate":2.22}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03,"y":1.01},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":0,"x":1.02,"y":1.01}]},{"name":"hand_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.03},{"tweenEasing":0,"y":-0.03},{"tweenEasing":0,"x":0.1,"y":-0.02},{"duration":7,"tweenEasing":0,"x":0.19,"y":-0.08},{"duration":0,"x":0.16,"y":-0.04}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-22.03},{"tweenEasing":0,"rotate":-22.3},{"tweenEasing":0,"rotate":3.75},{"duration":7,"tweenEasing":0,"rotate":95.26},{"duration":0,"rotate":83.25}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":0.99},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.99}]},{"name":"hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.04,"y":0.04},{"tweenEasing":0,"x":0.02,"y":0.08},{"tweenEasing":0,"x":0.06,"y":0.16},{"duration":7,"tweenEasing":0,"x":0.3,"y":-0.05},{"duration":0,"x":0.26,"y":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":0.5},{"tweenEasing":0,"rotate":-2.27},{"tweenEasing":0,"rotate":-12.92},{"duration":7,"tweenEasing":0,"rotate":-20.48},{"duration":0,"rotate":-23.94}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01,"y":1.02},{"tweenEasing":0,"x":1.01,"y":1.03},{"tweenEasing":0,"x":0.98,"y":0.92},{"duration":7,"tweenEasing":0,"x":0.94,"y":0.76},{"duration":0,"x":0.96,"y":0.81}]},{"name":"weapon_hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01},{"tweenEasing":0,"x":0.01},{"tweenEasing":0},{"duration":7,"x":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":13.43},{"tweenEasing":0,"rotate":14.56},{"tweenEasing":0,"rotate":26.23},{"duration":7,"tweenEasing":0,"rotate":23.18},{"duration":0,"rotate":32.77}]},{"name":"weapon_hand_r","translateFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"x":-0.01},{"tweenEasing":0},{"duration":7,"y":-0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":19.53},{"tweenEasing":0,"rotate":26.53},{"tweenEasing":0,"rotate":13.24},{"duration":7,"tweenEasing":0,"rotate":19.02},{"duration":0,"rotate":17.77}]},{"name":"root","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.16,"y":1.7},{"duration":2,"tweenEasing":0,"x":0.16,"y":1.7},{"duration":7,"x":-0.86,"y":3.5}]},{"name":"thigh_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.29,"y":-0.03},{"tweenEasing":0,"x":0.29,"y":-0.03},{"tweenEasing":0,"x":0.97,"y":-2.63},{"duration":7,"tweenEasing":0,"x":1.17,"y":-5.6},{"duration":0,"x":0.74,"y":-4.76}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-12.51},{"tweenEasing":0,"rotate":-12.51},{"tweenEasing":0,"rotate":-8.25},{"duration":7,"tweenEasing":0,"rotate":12.27},{"duration":0,"rotate":7.26}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.89},{"tweenEasing":0,"x":0.89},{"tweenEasing":0},{"duration":7,"x":1.02}]},{"name":"thigh_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.28},{"tweenEasing":0,"x":-0.28},{"tweenEasing":0,"x":-0.9,"y":2.62},{"duration":7,"tweenEasing":0,"x":-1.15,"y":5.52},{"duration":0,"x":-0.73,"y":4.7}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-15.06},{"tweenEasing":0,"rotate":-15.06},{"tweenEasing":0,"rotate":-26.1},{"duration":7,"tweenEasing":0,"rotate":-8.29},{"duration":0,"rotate":-31.37}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":1.01},{"tweenEasing":0,"x":1.01,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.95,"y":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.03,"y":-0.02},{"tweenEasing":0,"x":-0.03,"y":-0.02},{"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":7,"x":0.05,"y":-0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":23.5},{"tweenEasing":0,"rotate":23.5},{"tweenEasing":0,"rotate":40.63},{"duration":7,"tweenEasing":0,"rotate":27.65},{"duration":0,"rotate":29.9}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.94,"y":1.01},{"tweenEasing":0,"x":0.94,"y":1.01},{"tweenEasing":0,"x":0.98,"y":1.01},{"duration":7,"tweenEasing":0,"x":1.04,"y":1.01},{"duration":0,"x":1.02,"y":1.01}]},{"name":"calf_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.01,"y":-0.01},{"tweenEasing":0,"x":-0.01,"y":-0.01},{"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":7,"tweenEasing":0},{"duration":0,"x":-0.03,"y":-0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":23.57},{"tweenEasing":0,"rotate":23.57},{"tweenEasing":0,"rotate":17.59},{"duration":7,"tweenEasing":0,"rotate":-32.13},{"duration":0,"rotate":6.8}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.94},{"tweenEasing":0,"x":0.94},{"tweenEasing":0,"x":0.89},{"duration":7,"tweenEasing":0,"x":0.98},{"duration":0,"x":0.94}]},{"name":"foot_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.07},{"tweenEasing":0,"x":0.01,"y":-0.07},{"tweenEasing":0,"x":-0.2,"y":-0.05},{"duration":7,"tweenEasing":0,"x":-0.18,"y":-0.03},{"duration":0,"x":-0.17,"y":-0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-11.03},{"tweenEasing":0,"rotate":-11.03},{"tweenEasing":0,"rotate":-32.38},{"duration":7,"tweenEasing":0,"rotate":-39.91},{"duration":0,"rotate":-37.15}]},{"name":"foot_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03},{"tweenEasing":0,"x":0.03},{"tweenEasing":0,"x":1.55,"y":-0.03},{"duration":7,"tweenEasing":0,"x":1.47,"y":-0.05},{"duration":0,"x":1.51,"y":-0.03}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-8.55},{"tweenEasing":0,"rotate":-8.55},{"tweenEasing":0,"rotate":8.43},{"duration":7,"tweenEasing":0,"rotate":40.37},{"duration":0,"rotate":24.52}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":14,"value":-1}]}]},{"duration":28,"playTimes":0,"fadeInTime":0.2,"name":"Idle2","bone":[{"name":"pelvis","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":11,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6},{"duration":11,"tweenEasing":0,"rotate":-8},{"duration":2,"tweenEasing":0,"rotate":-8.25},{"duration":6,"tweenEasing":0,"rotate":-5.64},{"duration":6,"tweenEasing":0,"rotate":-2.97},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.05,"y":0.31},{"duration":11,"tweenEasing":0,"x":0.03,"y":0.32},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.34},{"duration":6,"tweenEasing":0,"x":0.04,"y":0.32},{"duration":6,"tweenEasing":0,"x":-0.13,"y":0.07},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":2.34},{"duration":11,"tweenEasing":0,"rotate":7.01},{"duration":2,"tweenEasing":0,"rotate":7.26},{"duration":6,"tweenEasing":0,"rotate":5.79},{"duration":6,"tweenEasing":0,"rotate":2.25},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":12}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.43,"y":-0.55},{"duration":11,"tweenEasing":0,"x":2.28,"y":1.52},{"duration":2,"tweenEasing":0,"x":2.28,"y":1.52},{"duration":6,"tweenEasing":0,"x":1.35,"y":0.25},{"duration":6,"tweenEasing":0,"x":0.54,"y":0.14},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":24.66},{"duration":11,"tweenEasing":0,"rotate":-127.17},{"duration":2,"tweenEasing":0,"rotate":-127.17},{"duration":6,"tweenEasing":0,"rotate":-102.81},{"duration":6,"tweenEasing":0,"rotate":-44.58},{"duration":0}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.96,"y":-0.15},{"duration":11,"tweenEasing":0,"x":-0.85,"y":-2.67},{"duration":2,"tweenEasing":0,"x":-0.85,"y":-2.67},{"duration":6,"tweenEasing":0,"x":0.08,"y":-1.12},{"duration":6,"tweenEasing":0,"x":0.17,"y":-0.65},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-24.49},{"duration":11,"tweenEasing":0,"rotate":-7.86},{"duration":2,"tweenEasing":0,"rotate":18.69},{"duration":6,"tweenEasing":0,"rotate":19.28},{"duration":6,"tweenEasing":0,"rotate":9.77},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":0.9},{"duration":2,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.87,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.91},{"duration":0}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01,"y":0.06},{"duration":11,"tweenEasing":0,"x":0.01,"y":0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.09},{"duration":6,"tweenEasing":0,"x":0.06,"y":-0.1},{"duration":6,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":5.94},{"duration":11,"tweenEasing":0,"rotate":9.46},{"duration":2,"tweenEasing":0,"rotate":-12.33},{"duration":6,"tweenEasing":0,"rotate":-14.34},{"duration":6,"tweenEasing":0,"rotate":-8.3},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98},{"duration":11,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.9},{"duration":6,"tweenEasing":0,"x":0.92},{"duration":6,"tweenEasing":0,"x":1.02},{"duration":0}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.18,"y":-0.05},{"duration":11,"tweenEasing":0,"x":0.09,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.09,"y":-0.07},{"duration":6,"tweenEasing":0,"x":0.02},{"duration":6,"tweenEasing":0,"x":1.11,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":16.97},{"duration":11,"tweenEasing":0,"rotate":3.95},{"duration":2,"tweenEasing":0,"rotate":3.95},{"duration":6,"tweenEasing":0,"rotate":-2.5},{"duration":6,"tweenEasing":0,"rotate":-0.84},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"y":0.99},{"duration":11,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.84,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.82,"y":0.99},{"duration":0}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.07,"y":-0.12},{"duration":11,"tweenEasing":0,"x":0.45,"y":-0.23},{"duration":2,"tweenEasing":0,"x":0.45,"y":-0.23},{"duration":6,"tweenEasing":0,"x":0.36,"y":-0.29},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.14},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":0.01},{"duration":11,"tweenEasing":0,"rotate":-3.52},{"duration":2,"tweenEasing":0,"rotate":-3.52},{"duration":6,"tweenEasing":0,"rotate":-4.04},{"duration":6,"tweenEasing":0,"rotate":-3.04},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":11,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.82,"y":0.99},{"duration":0}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":11,"tweenEasing":0,"x":0.03,"y":0.17},{"duration":2,"tweenEasing":0,"x":0.08,"y":0.18},{"duration":6,"tweenEasing":0,"x":0.09,"y":0.19},{"duration":6,"tweenEasing":0,"x":0.04,"y":0.11},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":0.01},{"duration":11,"tweenEasing":0,"rotate":-0.23},{"duration":2,"tweenEasing":0,"rotate":9.23},{"duration":6,"tweenEasing":0,"rotate":8.42},{"duration":6,"tweenEasing":0,"rotate":3.5},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.98},{"duration":11,"tweenEasing":0,"x":0.99,"y":0.98},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":6,"tweenEasing":0,"x":0.98,"y":0.91},{"duration":6}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"y":0.01},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-11.56},{"duration":11,"tweenEasing":0,"rotate":35.02},{"duration":2,"tweenEasing":0,"rotate":34.46},{"duration":6,"tweenEasing":0,"rotate":35.98},{"duration":6,"tweenEasing":0,"rotate":26.72},{"duration":0}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.31,"y":-0.48},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.48},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.31,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.47},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":3.92,"y":-3.23},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":6,"tweenEasing":0,"x":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":72.69},{"tweenEasing":0,"rotate":-95.52},{"tweenEasing":0,"rotate":-151.72},{"tweenEasing":0,"rotate":124.8},{"tweenEasing":0,"rotate":63.15},{"tweenEasing":0,"rotate":5.26},{"tweenEasing":0,"rotate":-57.46},{"tweenEasing":0,"rotate":-116.85},{"tweenEasing":0,"rotate":-174.24},{"tweenEasing":0,"rotate":123.54},{"tweenEasing":0,"rotate":64.15},{"tweenEasing":0,"rotate":6.51},{"tweenEasing":0,"rotate":-55.46},{"tweenEasing":0,"rotate":-104.3},{"duration":6,"tweenEasing":0,"rotate":-96.77},{"duration":6,"tweenEasing":0,"rotate":-55.71},{"duration":0}]},{"name":"root","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.78,"y":2.3},{"duration":11,"tweenEasing":0,"x":1.32,"y":0.3},{"duration":2,"tweenEasing":0,"x":1.32,"y":0.3},{"duration":6,"tweenEasing":0,"x":0.33,"y":1.37},{"duration":6,"tweenEasing":0,"x":0.17,"y":0.69},{"duration":0}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.09,"y":-0.24},{"duration":11,"tweenEasing":0,"x":0.76,"y":-0.66},{"duration":2,"tweenEasing":0,"x":0.78,"y":-0.66},{"duration":6,"tweenEasing":0,"x":0.72,"y":-0.54},{"duration":6,"tweenEasing":0,"x":0.56,"y":-0.15},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-22.27},{"duration":11,"tweenEasing":0,"rotate":3},{"duration":2,"tweenEasing":0,"rotate":2.75},{"duration":6,"tweenEasing":0,"rotate":-11.76},{"duration":6,"tweenEasing":0,"rotate":-8.5},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.84,"y":0.99},{"duration":11,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":6,"tweenEasing":0,"x":0.93},{"duration":6,"tweenEasing":0,"x":0.95},{"duration":0}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.09,"y":0.23},{"duration":11,"tweenEasing":0,"x":-0.74,"y":0.62},{"duration":2,"tweenEasing":0,"x":-0.77,"y":0.62},{"duration":6,"tweenEasing":0,"x":-0.72,"y":0.49},{"duration":6,"tweenEasing":0,"x":-0.24,"y":0.33},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-19.58},{"duration":11,"tweenEasing":0,"rotate":3.01},{"duration":2,"tweenEasing":0,"rotate":3.51},{"duration":6,"tweenEasing":0,"rotate":-9.54},{"duration":6,"tweenEasing":0,"rotate":-6.03},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.01},{"duration":11,"tweenEasing":0,"x":0.98},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":6,"tweenEasing":0,"x":1.01},{"duration":6,"tweenEasing":0,"x":1.01},{"duration":0}]},{"name":"calf_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.04},{"duration":11,"tweenEasing":0,"x":0.03},{"duration":2,"tweenEasing":0,"x":0.03},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":33.01},{"duration":11,"tweenEasing":0,"rotate":9.04},{"duration":2,"tweenEasing":0,"rotate":9.54},{"duration":6,"tweenEasing":0,"rotate":27.29},{"duration":6,"tweenEasing":0,"rotate":17.02},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":6,"tweenEasing":0,"x":0.94},{"duration":6,"tweenEasing":0,"x":0.96},{"duration":0}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.01,"y":-0.06},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":6,"tweenEasing":0,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":20.59},{"duration":11,"tweenEasing":0,"rotate":-0.02},{"duration":2,"tweenEasing":0,"rotate":-0.77},{"duration":6,"tweenEasing":0,"rotate":13.3},{"duration":6,"tweenEasing":0,"rotate":8.28},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.9},{"duration":11,"tweenEasing":0,"x":1.04},{"duration":2,"tweenEasing":0,"x":1.04},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"foot_r","translateFrame":[{"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":11,"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.04},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":6,"tweenEasing":0,"y":-0.02},{"duration":0}],"rotateFrame":[{"tweenEasing":0,"rotate":-10.78},{"duration":2,"tweenEasing":0,"rotate":-11.2},{"duration":11,"tweenEasing":0,"rotate":-12.04},{"duration":2,"tweenEasing":0,"rotate":-12.29},{"duration":6,"tweenEasing":0,"rotate":-15.55},{"duration":6,"tweenEasing":0,"rotate":-8.53},{"duration":0}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02,"y":0.01},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.02},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-1.08},{"duration":11,"tweenEasing":0,"rotate":-2.98},{"duration":2,"tweenEasing":0,"rotate":-2.73},{"duration":6,"tweenEasing":0,"rotate":-3.76},{"duration":6,"tweenEasing":0,"rotate":-2.26},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":28,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file +{"frameRate":25,"name":"SoldierElf","version":"5.5","compatibleVersion":"5.5","armature":[{"type":"Armature","frameRate":25,"name":"SoldierElf","aabb":{"x":-34.53,"y":-104.78,"width":86.87,"height":105.25},"bone":[{"name":"root1","transform":{"y":-11.0128}},{"inheritScale":false,"name":"effect_r","parent":"root1","transform":{"x":33.28,"y":4,"skX":-46.2343,"skY":-23.9186,"scX":2.1416,"scY":2.3753}},{"inheritScale":false,"length":3,"name":"root","parent":"root1","transform":{"x":-0.04,"y":-15.48,"skX":90.2632,"skY":90.2632}},{"inheritScale":false,"length":5,"name":"thigh_l","parent":"root","transform":{"x":1.6606,"y":-6.4628,"skX":-40.9714,"skY":-40.9714,"scX":0.9869,"scY":0.9853}},{"inheritScale":false,"length":5,"name":"thigh_r","parent":"root","transform":{"x":1.3414,"y":6.0837,"skX":3.567,"skY":3.567,"scX":0.9859,"scY":0.9981}},{"inheritScale":false,"length":3,"name":"pelvis","parent":"root","transform":{"x":-3.2028,"y":0.1015,"skX":-174.7594,"skY":-174.7594,"scX":0.9802,"scY":0.9952}},{"inheritScale":false,"length":8,"name":"chest","parent":"pelvis","transform":{"x":4,"y":-0.0016,"skX":-5.2066,"skY":-5.2246,"scX":0.9979,"scY":0.9998}},{"inheritScale":false,"length":9,"name":"calf_r","parent":"thigh_r","transform":{"x":5.704,"y":0.0016,"skX":16.144,"skY":16.1453,"scX":0.9955,"scY":0.9905}},{"inheritScale":false,"length":7,"name":"calf_l","parent":"thigh_l","transform":{"x":5.6592,"y":-0.0016,"skX":32.6682,"skY":32.6684,"scX":0.9945,"scY":0.9954}},{"inheritScale":false,"length":5,"name":"shouder_l","parent":"chest","transform":{"x":8.6578,"y":9.9632,"skX":-164.5031,"skY":-164.5031,"scX":0.9868,"scY":0.9948}},{"inheritScale":false,"length":5,"name":"shouder_r","parent":"chest","transform":{"x":10.4583,"y":-13.3897,"skX":-147.4808,"skY":-147.4808,"scX":0.9972,"scY":0.9986}},{"inheritScale":false,"name":"foot_l","parent":"calf_l","transform":{"x":15.2897,"y":1.2193,"skX":8.0381,"skY":8.0381,"scX":0.9955}},{"inheritScale":false,"name":"foot_r","parent":"calf_r","transform":{"x":14.2999,"y":-2.3357,"skX":-19.9771,"skY":-19.9771,"scX":0.9955}},{"inheritScale":false,"length":12,"name":"forearm_r","parent":"shouder_r","transform":{"x":6.0016,"y":0.0016,"skX":-38.0045,"skY":-38.0045,"scX":0.9973,"scY":0.994}},{"inheritScale":false,"length":7,"name":"forearm_l","parent":"shouder_l","transform":{"x":6.0144,"y":-0.0016,"skX":-42.3089,"skY":-42.3089,"scX":0.9979,"scY":0.987}},{"inheritScale":false,"name":"hand_r","parent":"forearm_r","transform":{"x":13.7919,"y":0.7114,"skX":3.3187,"skY":3.3187,"scX":1.0446,"scY":0.9963}},{"inheritScale":false,"name":"hand_l","parent":"forearm_l","transform":{"x":7.6912,"y":-0.0032,"skX":119.4238,"skY":119.4238,"scX":0.9894,"scY":0.9954}},{"inheritScale":false,"name":"weapon_hand_l","parent":"hand_l","transform":{"x":-8.5173,"y":-2.6264,"skX":139.1066,"skY":139.1066,"scX":0.9967,"scY":0.9984}},{"inheritRotation":false,"inheritScale":false,"name":"weapon_hand_r","parent":"hand_r","transform":{"x":1.4768,"y":-3.0184,"skX":-17.7744,"skY":-17.7744,"scX":0.9981,"scY":0.999}}],"slot":[{"name":"cape","parent":"pelvis"},{"name":"shouder_l","parent":"shouder_l"},{"name":"forearm_l","parent":"forearm_l"},{"name":"hand_l","parent":"hand_l"},{"name":"weapon_hand_l","parent":"weapon_hand_l"},{"name":"thigh_l","parent":"thigh_l"},{"name":"calf_l","parent":"calf_l"},{"name":"foot_l","parent":"foot_l"},{"name":"pelvis","parent":"pelvis"},{"name":"thigh_r","parent":"thigh_r"},{"name":"calf_r","parent":"calf_r"},{"name":"foot_r","parent":"foot_r"},{"name":"shouder_r","parent":"shouder_r"},{"name":"chest","parent":"chest"},{"name":"weapon_hand_r","parent":"weapon_hand_r"},{"name":"forearm_r","parent":"forearm_r"},{"name":"hand_r","parent":"hand_r"},{"name":"effect_r","parent":"effect_r"}],"skin":[{"slot":[{"name":"forearm_l","display":[{"name":"mecha_1004d_folder/textures/forearm_l_2","transform":{"x":5.09,"y":0.15,"skX":-63.39,"skY":-63.39},"path":"forearm_l"}]},{"name":"effect_r","display":[{"name":"we_bl_4","transform":{"x":11.39,"y":-12.38},"path":"we_bl_4_f_1"}]},{"name":"shouder_l","display":[{"name":"mecha_1004d_folder/textures/shouder_l_1","transform":{"x":0.4,"y":0.06,"skX":-68.92,"skY":-68.56,"scX":1.0015,"scY":0.9985},"path":"shouder_l"}]},{"name":"thigh_r","display":[{"name":"mecha_1004d_folder/textures/thigh_r_0","transform":{"x":-0.65,"y":1.03,"skX":-94.6,"skY":-94.62,"scX":0.9991,"scY":0.99},"path":"thigh_r"}]},{"name":"pelvis","display":[{"name":"mecha_1004d_folder/textures/pelvis_0","transform":{"x":9.56,"y":-1.5,"skX":83.65,"skY":83.65},"path":"pelvis"}]},{"name":"weapon_hand_r","display":[{"name":"weapon_hand_r","transform":{"x":14.2,"y":2.01,"skX":51,"skY":51},"path":"weapon_hand_l"}]},{"name":"hand_r","display":[{"name":"mecha_1004d_folder/textures/hand_r_2","transform":{"x":3.51,"y":-2.17,"skX":-84.89,"skY":-84.89},"path":"hand_r"}]},{"name":"weapon_hand_l","display":[{"name":"weapon_hand_l","transform":{"x":12.59,"y":1.83,"skX":52.1,"skY":52.1}}]},{"name":"shouder_r","display":[{"name":"mecha_1004d_folder/textures/shouder_r_1","transform":{"x":0.46,"y":0.08,"skX":-136.05,"skY":-136.05},"path":"shouder_r"}]},{"name":"calf_l","display":[{"name":"mecha_1004d_folder/textures/calf_l_0","transform":{"x":7.16,"y":0.84,"skX":-91.2,"skY":-91.2},"path":"calf_l"}]},{"name":"foot_r","display":[{"name":"mecha_1004d_folder/textures/foot_r_0","transform":{"x":1.06,"y":-1.31,"skX":-85.95,"skY":-85.95},"path":"foot_r"}]},{"name":"foot_l","display":[{"name":"mecha_1004d_folder/textures/foot_l_0","transform":{"x":1.82,"y":-3.5,"skX":-90.37,"skY":-90.37},"path":"foot_l"}]},{"name":"calf_r","display":[{"name":"mecha_1004d_folder/textures/calf_r_0","transform":{"x":5.87,"y":0.08,"skX":-91.22,"skY":-91.22},"path":"calf_r"}]},{"name":"thigh_l","display":[{"name":"mecha_1004d_folder/textures/thigh_l_0","transform":{"x":1.19,"y":0.3,"skX":-66.04,"skY":-66.04},"path":"thigh_l"}]},{"name":"hand_l","display":[{"name":"mecha_1004d_folder/textures/hand_l_2","transform":{"x":-5.62,"y":-5.3,"skX":179.52,"skY":179.52},"path":"hand_l"}]},{"name":"forearm_r","display":[{"name":"mecha_1004d_folder/textures/forearm_r_3","transform":{"x":6.7,"y":0.41,"skX":-87.21,"skY":-87.21},"path":"forearm_r"}]},{"name":"chest","display":[{"name":"mecha_1004d_folder/textures/chest_0","transform":{"x":42.26,"y":-1.48,"skX":90.4,"skY":90.61},"path":"chest"}]},{"name":"cape","display":[{"name":"cape","transform":{"x":10.59,"y":-16.32,"skX":84.58,"skY":84.41,"scX":1.0049,"scY":1.0201}}]}]}],"animation":[{"duration":60,"playTimes":0,"fadeInTime":0.2,"name":"Idle1","bone":[{"name":"pelvis","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.31},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.5},{"duration":0}]},{"name":"chest","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":0.11},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.48},{"duration":0}]},{"name":"shouder_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.6,"y":-0.22},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.98},{"duration":0}]},{"name":"shouder_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.23,"y":0.28},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.98},{"duration":0}]},{"name":"forearm_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":-0.01},{"duration":0}]},{"name":"forearm_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01},{"duration":0}]},{"name":"hand_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.5},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"hand_l","rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.75},{"duration":0}]},{"name":"weapon_hand_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-0.92},{"duration":0}]},{"name":"weapon_hand_r","rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-3.01},{"duration":0}]},{"name":"thigh_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.17,"y":0.21},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":0.25},{"duration":0}]},{"name":"thigh_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.45,"y":-0.21},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":7.53},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.97},{"duration":0}]},{"name":"calf_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-1.75},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":1.01},{"duration":0}]},{"name":"calf_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":0.02,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":-10.55},{"duration":0}],"scaleFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":1.03},{"duration":0}]},{"name":"foot_r","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"x":-0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":1.5},{"duration":0}]},{"name":"foot_l","translateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"y":0.01},{"duration":0}],"rotateFrame":[{"duration":30,"tweenEasing":0},{"duration":30,"tweenEasing":0,"rotate":3.03},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":60,"value":-1}]}]},{"duration":58,"playTimes":0,"fadeInTime":0.2,"name":"Walking","frame":[{"duration":27},{"duration":31,"sound":"footstep"},{"duration":0,"sound":"walk"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":10,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":17,"tweenEasing":0,"x":-0.47,"y":-0.01},{"duration":8,"tweenEasing":0,"x":0.01},{"duration":5,"tweenEasing":0},{"duration":16,"tweenEasing":0,"x":-1.06,"y":0.03},{"duration":0,"x":-0.1}],"rotateFrame":[{"duration":10,"tweenEasing":0,"rotate":6.25},{"duration":2,"tweenEasing":0,"rotate":5.25},{"duration":17,"tweenEasing":0,"rotate":5},{"duration":8,"tweenEasing":0,"rotate":5.75},{"duration":5,"tweenEasing":0,"rotate":5.5},{"duration":16,"tweenEasing":0,"rotate":5.75},{"duration":0,"rotate":6.05}],"scaleFrame":[{"duration":10,"tweenEasing":0,"x":1.01},{"duration":19,"tweenEasing":0,"x":0.98},{"duration":8,"tweenEasing":0,"x":0.98},{"duration":21}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.06,"y":0.19},{"duration":7,"tweenEasing":0,"x":-0.44,"y":0.27},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.28},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.29},{"duration":7,"tweenEasing":0,"x":1.11,"y":0.18},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.18},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.23},{"duration":5,"tweenEasing":0,"x":-0.28,"y":0.26},{"duration":2,"tweenEasing":0,"x":-0.03,"y":0.25},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.23},{"duration":7,"tweenEasing":0,"x":-0.05,"y":0.24},{"duration":9,"tweenEasing":0,"x":0.69,"y":0.13},{"duration":0,"x":0.33,"y":0.17}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-4.04},{"duration":7,"tweenEasing":0,"rotate":-3.46},{"duration":2,"tweenEasing":0,"rotate":-2.94},{"duration":7,"tweenEasing":0,"rotate":-3.06},{"duration":7,"tweenEasing":0,"rotate":-4.75},{"duration":3,"tweenEasing":0,"rotate":-6.6},{"duration":3,"tweenEasing":0,"rotate":-5.2},{"duration":5,"tweenEasing":0,"rotate":-3.88},{"duration":2,"tweenEasing":0,"rotate":-4.26},{"duration":3,"tweenEasing":0,"rotate":-4.62},{"duration":7,"tweenEasing":0,"rotate":-5.53},{"duration":9,"tweenEasing":0,"rotate":-7.66},{"duration":0,"rotate":-5.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99},{"duration":9,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":32}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-1.74,"y":8.78},{"duration":7,"tweenEasing":0,"x":-1.64,"y":8.53},{"duration":2,"tweenEasing":0,"x":-1.12,"y":6.91},{"duration":7,"tweenEasing":0,"x":-0.96,"y":6.53},{"duration":7,"tweenEasing":0,"x":-0.54,"y":5.36},{"duration":3,"tweenEasing":0,"x":-0.63,"y":4.56},{"duration":3,"tweenEasing":0,"x":-0.91,"y":5.01},{"duration":5,"tweenEasing":0,"x":-1.15,"y":5.24},{"duration":2,"tweenEasing":0,"x":-1.33,"y":6.55},{"duration":3,"tweenEasing":0,"x":-1.37,"y":6.99},{"duration":7,"tweenEasing":0,"x":-1.4,"y":7.48},{"duration":9,"tweenEasing":0,"x":-1.43,"y":8.33},{"duration":0,"x":-1.62,"y":8.69}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-19.52},{"duration":7,"tweenEasing":0,"rotate":-17.27},{"duration":2,"tweenEasing":0,"rotate":-10.54},{"duration":7,"tweenEasing":0,"rotate":-8.54},{"duration":7,"tweenEasing":0,"rotate":-2.29},{"duration":3,"tweenEasing":0,"rotate":2.3},{"duration":3,"tweenEasing":0,"rotate":1.76},{"duration":5,"tweenEasing":0,"rotate":0.78},{"duration":2,"tweenEasing":0,"rotate":-0.48},{"duration":3,"tweenEasing":0,"rotate":-1.48},{"duration":7,"tweenEasing":0,"rotate":-2.99},{"duration":9,"tweenEasing":0,"rotate":-7.27},{"duration":0,"rotate":-17.54}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":2.41,"y":-9.55},{"duration":7,"tweenEasing":0,"x":2.28,"y":-9.45},{"duration":2,"tweenEasing":0,"x":1.84,"y":-8.13},{"duration":7,"tweenEasing":0,"x":1.7,"y":-7.82},{"duration":7,"tweenEasing":0,"x":1.34,"y":-6.83},{"duration":3,"tweenEasing":0,"x":1.5,"y":-6.26},{"duration":3,"tweenEasing":0,"x":1.76,"y":-6.59},{"duration":5,"tweenEasing":0,"x":1.99,"y":-6.82},{"duration":2,"tweenEasing":0,"x":2.13,"y":-7.95},{"duration":3,"tweenEasing":0,"x":2.15,"y":-8.36},{"duration":7,"tweenEasing":0,"x":2.16,"y":-8.77},{"duration":9,"tweenEasing":0,"x":2.12,"y":-9.35},{"duration":0,"x":2.28,"y":-9.54}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":9.06},{"duration":7,"tweenEasing":0,"rotate":8.05},{"duration":2,"tweenEasing":0,"rotate":5.76},{"duration":7,"tweenEasing":0,"rotate":4.5},{"duration":7,"tweenEasing":0,"rotate":-0.28},{"duration":3,"tweenEasing":0,"rotate":-5.21},{"duration":3,"tweenEasing":0,"rotate":-6.5},{"duration":5,"tweenEasing":0,"rotate":-5.98},{"duration":2,"tweenEasing":0,"rotate":-2.48},{"duration":3,"tweenEasing":0,"rotate":-0.98},{"duration":7,"tweenEasing":0,"rotate":1.52},{"duration":9,"tweenEasing":0,"rotate":7.27},{"duration":0,"rotate":9.53}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.85},{"duration":7,"tweenEasing":0,"x":0.87},{"duration":2,"tweenEasing":0,"x":0.91},{"duration":7,"tweenEasing":0,"x":0.91},{"duration":7,"tweenEasing":0,"x":0.89},{"duration":3,"tweenEasing":0,"x":0.87},{"duration":8,"tweenEasing":0,"x":0.86},{"duration":2,"tweenEasing":0,"x":0.86},{"duration":10,"tweenEasing":0,"x":0.87},{"duration":9,"tweenEasing":0,"x":0.87},{"duration":0,"x":0.86}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.82,"y":-0.12},{"duration":7,"tweenEasing":0,"x":0.8,"y":-0.13},{"duration":2,"tweenEasing":0,"x":0.78,"y":-0.1},{"duration":7,"tweenEasing":0,"x":0.78,"y":-0.07},{"duration":7,"tweenEasing":0,"x":0.8,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.84,"y":-0.04},{"duration":3,"tweenEasing":0,"x":0.83,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.84,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.84,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.84,"y":-0.08},{"duration":7,"tweenEasing":0,"x":0.84,"y":-0.1},{"duration":9,"tweenEasing":0,"x":0.83,"y":-0.12},{"duration":0,"x":0.82,"y":-0.13}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6.96},{"duration":7,"tweenEasing":0,"rotate":6.97},{"duration":2,"tweenEasing":0,"rotate":7.24},{"duration":7,"tweenEasing":0,"rotate":7.74},{"duration":7,"tweenEasing":0,"rotate":8.73},{"duration":3,"tweenEasing":0,"rotate":9.96},{"duration":3,"tweenEasing":0,"rotate":8.7},{"duration":5,"tweenEasing":0,"rotate":6.69},{"duration":2,"tweenEasing":0,"rotate":3.2},{"duration":3,"tweenEasing":0,"rotate":1.95},{"duration":7,"tweenEasing":0,"rotate":0.44},{"duration":9,"tweenEasing":0,"rotate":0.2},{"duration":0,"rotate":5.68}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.85,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.89,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.95,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.95},{"duration":7,"tweenEasing":0,"x":0.96},{"duration":3,"tweenEasing":0,"x":0.95},{"duration":3,"tweenEasing":0,"x":0.95},{"duration":5,"tweenEasing":0,"x":0.94},{"duration":2,"tweenEasing":0,"x":0.93},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":7,"tweenEasing":0,"x":0.92},{"duration":9,"tweenEasing":0,"x":0.9},{"duration":0,"x":0.86,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.24,"y":0.22},{"duration":7,"tweenEasing":0,"x":1.24,"y":0.23},{"duration":2,"tweenEasing":0,"x":1.23,"y":0.21},{"duration":7,"tweenEasing":0,"x":1.24,"y":0.2},{"duration":7,"tweenEasing":0,"x":1.21,"y":0.19},{"duration":3,"tweenEasing":0,"x":1.2,"y":0.2},{"duration":3,"tweenEasing":0,"x":1.21,"y":0.2},{"duration":5,"tweenEasing":0,"x":1.2,"y":0.17},{"duration":2,"tweenEasing":0,"x":1.18,"y":0.18},{"duration":3,"tweenEasing":0,"x":1.17,"y":0.18},{"duration":7,"tweenEasing":0,"x":1.19,"y":0.18},{"duration":9,"tweenEasing":0,"x":1.25,"y":0.2},{"duration":0,"x":1.23,"y":0.22}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6.52},{"duration":7,"tweenEasing":0,"rotate":6.27},{"duration":2,"tweenEasing":0,"rotate":5.52},{"duration":7,"tweenEasing":0,"rotate":5.27},{"duration":7,"tweenEasing":0,"rotate":6.51},{"duration":3,"tweenEasing":0,"rotate":9.5},{"duration":3,"tweenEasing":0,"rotate":10},{"duration":5,"tweenEasing":0,"rotate":10.25},{"duration":2,"tweenEasing":0,"rotate":9.5},{"duration":3,"tweenEasing":0,"rotate":9.01},{"duration":7,"tweenEasing":0,"rotate":8.77},{"duration":9,"tweenEasing":0,"rotate":8.53},{"duration":0,"rotate":7.78}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":16,"tweenEasing":0,"x":1.03},{"duration":7,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":5,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":9,"x":1.03}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.14,"y":-0.07},{"duration":7,"tweenEasing":0,"x":0.12,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.11,"y":-0.05},{"duration":7,"tweenEasing":0,"x":0.1,"y":-0.04},{"duration":7,"tweenEasing":0,"x":0.1,"y":-0.06},{"duration":3,"tweenEasing":0,"x":0.1,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.11},{"duration":5,"tweenEasing":0,"x":0.12,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.14,"y":-0.06},{"duration":10,"tweenEasing":0,"x":0.15,"y":-0.05},{"duration":9,"tweenEasing":0,"x":0.15,"y":-0.05},{"duration":0,"x":0.14,"y":-0.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-5.5},{"duration":7,"tweenEasing":0,"rotate":-5},{"duration":2,"tweenEasing":0,"rotate":-4.5},{"duration":7,"tweenEasing":0,"rotate":-4.25},{"duration":7,"tweenEasing":0,"rotate":-5.25},{"duration":3,"tweenEasing":0,"rotate":-7.5},{"duration":3,"tweenEasing":0,"rotate":-7.25},{"duration":5,"tweenEasing":0,"rotate":-6.25},{"duration":2,"tweenEasing":0,"rotate":-1.75},{"duration":3,"tweenEasing":0,"rotate":-0.25},{"duration":7,"tweenEasing":0,"rotate":0.25},{"duration":9,"tweenEasing":0,"rotate":-1.5},{"duration":0,"rotate":-4.75}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":7,"tweenEasing":0,"x":0.98},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.96},{"duration":5,"tweenEasing":0,"x":0.96},{"duration":5,"tweenEasing":0,"x":0.97},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":9,"tweenEasing":0,"x":0.98},{"duration":0,"x":0.98,"y":0.99}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.13,"y":0.09},{"duration":7,"tweenEasing":0,"x":0.09,"y":0.09},{"duration":2,"tweenEasing":0,"x":0.04,"y":0.12},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.1},{"duration":7,"tweenEasing":0,"x":0.04,"y":0.13},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.14},{"duration":3,"tweenEasing":0,"x":0.03,"y":0.13},{"duration":5,"tweenEasing":0,"x":0.04,"y":0.14},{"duration":2,"tweenEasing":0,"x":0.06,"y":0.15},{"duration":3,"tweenEasing":0,"x":0.07,"y":0.15},{"duration":7,"tweenEasing":0,"x":0.08,"y":0.14},{"duration":9,"tweenEasing":0,"x":0.1,"y":0.14},{"duration":0,"x":0.12,"y":0.11}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":5.14},{"duration":7,"tweenEasing":0,"rotate":6.86},{"duration":2,"tweenEasing":0,"rotate":9.82},{"duration":7,"tweenEasing":0,"rotate":9.31},{"duration":7,"tweenEasing":0,"rotate":7.06},{"duration":3,"tweenEasing":0,"rotate":4.3},{"duration":3,"tweenEasing":0,"rotate":4.05},{"duration":5,"tweenEasing":0,"rotate":5.06},{"duration":2,"tweenEasing":0,"rotate":7.32},{"duration":3,"tweenEasing":0,"rotate":8.08},{"duration":7,"tweenEasing":0,"rotate":9.08},{"duration":9,"tweenEasing":0,"rotate":9.35},{"duration":0,"rotate":5.91}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.95},{"duration":7,"tweenEasing":0,"x":0.99,"y":0.96},{"duration":2,"tweenEasing":0,"y":0.97},{"duration":7,"tweenEasing":0,"y":0.97},{"duration":23,"tweenEasing":0,"x":0.99,"y":0.97},{"duration":7,"tweenEasing":0,"x":0.99,"y":0.97},{"duration":9,"tweenEasing":0,"y":0.97},{"duration":0,"y":0.96}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02},{"duration":7,"tweenEasing":0,"x":0.02},{"duration":2,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":7,"tweenEasing":0,"x":0.01},{"duration":7,"tweenEasing":0,"x":0.01},{"duration":3,"tweenEasing":0,"y":0.01},{"duration":8,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":9,"tweenEasing":0,"x":0.01},{"duration":0,"x":0.02,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.05},{"duration":7,"tweenEasing":0,"rotate":19.94},{"duration":2,"tweenEasing":0,"rotate":17.95},{"duration":7,"tweenEasing":0,"rotate":18.42},{"duration":7,"tweenEasing":0,"rotate":20.58},{"duration":3,"tweenEasing":0,"rotate":23.19},{"duration":3,"tweenEasing":0,"rotate":23.94},{"duration":5,"tweenEasing":0,"rotate":23.5},{"duration":2,"tweenEasing":0,"rotate":22.36},{"duration":3,"tweenEasing":0,"rotate":21.8},{"duration":7,"tweenEasing":0,"rotate":21.24},{"duration":9,"tweenEasing":0,"rotate":20.8},{"duration":0,"rotate":21.25}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.01},{"duration":7,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.01},{"duration":7,"tweenEasing":0,"x":-0.01,"y":0.01},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":-0.01},{"duration":10,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":7,"tweenEasing":0,"y":0.01},{"duration":9,"tweenEasing":0,"y":0.01},{"duration":0,"x":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-3.01},{"duration":7,"tweenEasing":0},{"duration":2,"tweenEasing":0,"rotate":6.76},{"duration":7,"tweenEasing":0,"rotate":8.77},{"duration":7,"tweenEasing":0,"rotate":14.4},{"duration":3,"tweenEasing":0,"rotate":18.27},{"duration":3,"tweenEasing":0,"rotate":19.78},{"duration":5,"tweenEasing":0,"rotate":21.53},{"duration":2,"tweenEasing":0,"rotate":24.53},{"duration":3,"tweenEasing":0,"rotate":24.28},{"duration":7,"tweenEasing":0,"rotate":21.78},{"duration":9,"tweenEasing":0,"rotate":12.52},{"duration":0,"rotate":-0.5}]},{"name":"root","translateFrame":[{"duration":10,"tweenEasing":0,"x":-1.63,"y":0.96},{"duration":19,"tweenEasing":0,"x":-1.48,"y":0.02},{"duration":8,"tweenEasing":0,"x":-1.63,"y":1.03},{"duration":21,"tweenEasing":0,"x":-1.79,"y":0.99},{"duration":0,"x":-1.65,"y":0.95}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.64,"y":-2.98},{"duration":2,"tweenEasing":0,"x":1.2,"y":-3.05},{"duration":5,"tweenEasing":0,"x":1.43,"y":-3.11},{"duration":2,"tweenEasing":0,"x":1.14,"y":-3.22},{"duration":7,"tweenEasing":0,"x":0.73,"y":-3.3},{"duration":7,"tweenEasing":0,"x":-0.05,"y":-3.55},{"duration":3,"tweenEasing":0,"x":0.51,"y":-3.77},{"duration":3,"tweenEasing":0,"x":1.26,"y":-3.91},{"duration":5,"tweenEasing":0,"x":1.48,"y":-3.99},{"duration":2,"tweenEasing":0,"x":1,"y":-3.97},{"duration":3,"tweenEasing":0,"x":0.45,"y":-3.93},{"duration":7,"tweenEasing":0,"x":-0.23,"y":-3.84},{"duration":9,"tweenEasing":0,"x":-0.66,"y":-3.51},{"duration":0,"x":0.16,"y":-3.07}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-21.02},{"duration":2,"tweenEasing":0,"rotate":-22.53},{"duration":5,"tweenEasing":0,"rotate":-26.04},{"duration":2,"tweenEasing":0,"rotate":-53.15},{"duration":7,"tweenEasing":0,"rotate":-58.92},{"duration":7,"tweenEasing":0,"rotate":-60.43},{"duration":3,"tweenEasing":0,"rotate":-72.97},{"duration":3,"tweenEasing":0,"rotate":-65.19},{"duration":5,"tweenEasing":0,"rotate":-68.71},{"duration":2,"tweenEasing":0,"rotate":-61.43},{"duration":3,"tweenEasing":0,"rotate":-54.4},{"duration":7,"tweenEasing":0,"rotate":-44.36},{"duration":9,"tweenEasing":0,"rotate":-31.31},{"duration":0,"rotate":-21.52}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":10,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":0,"x":1.01}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.63,"y":2.95},{"duration":7,"tweenEasing":0,"x":-0.37,"y":3},{"duration":2,"tweenEasing":0,"x":-1.12,"y":3.18},{"duration":7,"tweenEasing":0,"x":-1.64,"y":3.24},{"duration":7,"tweenEasing":0,"x":-2.57,"y":3.46},{"duration":3,"tweenEasing":0,"x":-2,"y":3.72},{"duration":3,"tweenEasing":0,"x":-1.22,"y":3.86},{"duration":2,"tweenEasing":0,"x":-0.89,"y":3.94},{"duration":3,"tweenEasing":0,"x":-0.79,"y":3.96},{"duration":2,"tweenEasing":0,"x":-0.99,"y":3.91},{"duration":3,"tweenEasing":0,"x":-1.38,"y":3.91},{"duration":7,"tweenEasing":0,"x":-1.88,"y":3.85},{"duration":9,"tweenEasing":0,"x":-2.1,"y":3.53},{"duration":0,"x":-1.12,"y":3.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-20.58},{"duration":7,"tweenEasing":0,"rotate":-21.34},{"duration":2,"tweenEasing":0,"rotate":-5.52},{"duration":7,"tweenEasing":0,"rotate":1.26},{"duration":7,"tweenEasing":0,"rotate":20.33},{"duration":3,"tweenEasing":0,"rotate":26.84},{"duration":3,"tweenEasing":0,"rotate":21.33},{"duration":2,"tweenEasing":0,"rotate":19.83},{"duration":3,"tweenEasing":0,"rotate":16.31},{"duration":2,"tweenEasing":0,"rotate":1.76},{"duration":3,"tweenEasing":0,"rotate":-8.29},{"duration":7,"tweenEasing":0,"rotate":-15.32},{"duration":9,"tweenEasing":0,"rotate":-18.83},{"duration":0,"rotate":-19.05}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.98,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":9,"tweenEasing":0,"x":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":7,"tweenEasing":0,"x":0.04,"y":-0.03},{"duration":7,"tweenEasing":0,"x":0.03,"y":-0.04},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.02},{"duration":5,"tweenEasing":0,"x":0.04,"y":-0.04},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.02},{"duration":7,"tweenEasing":0,"x":0.05,"y":-0.02},{"duration":9,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":0,"x":0.07,"y":-0.06}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":48.14},{"duration":2,"tweenEasing":0,"rotate":58.43},{"duration":5,"tweenEasing":0,"rotate":64.7},{"duration":2,"tweenEasing":0,"rotate":80.26},{"duration":7,"tweenEasing":0,"rotate":79.51},{"duration":7,"tweenEasing":0,"rotate":56.68},{"duration":3,"tweenEasing":0,"rotate":52.2},{"duration":3,"tweenEasing":0,"rotate":42.17},{"duration":5,"tweenEasing":0,"rotate":48.44},{"duration":2,"tweenEasing":0,"rotate":48.66},{"duration":3,"tweenEasing":0,"rotate":43.64},{"duration":7,"tweenEasing":0,"rotate":35.85},{"duration":9,"tweenEasing":0,"rotate":32.07},{"duration":0,"rotate":41.6}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":5,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.99,"y":1.01},{"duration":10,"tweenEasing":0,"x":0.99},{"duration":9,"tweenEasing":0,"x":0.99},{"duration":0,"x":0.98}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.02},{"duration":7,"tweenEasing":0,"x":-0.03,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":7,"tweenEasing":0,"x":-0.03,"y":-0.04},{"duration":7,"tweenEasing":0,"x":-0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":5,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":7,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":9,"tweenEasing":0,"x":-0.02,"y":-0.01},{"duration":0,"x":-0.03,"y":-0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":26.19},{"duration":7,"tweenEasing":0,"rotate":27.35},{"duration":2,"tweenEasing":0,"rotate":23.54},{"duration":7,"tweenEasing":0,"rotate":19.51},{"duration":7,"tweenEasing":0,"rotate":10.96},{"duration":3,"tweenEasing":0,"rotate":20.49},{"duration":3,"tweenEasing":0,"rotate":36.56},{"duration":2,"tweenEasing":0,"rotate":47.6},{"duration":3,"tweenEasing":0,"rotate":54.38},{"duration":2,"tweenEasing":0,"rotate":63.92},{"duration":3,"tweenEasing":0,"rotate":66.19},{"duration":7,"tweenEasing":0,"rotate":62.92},{"duration":9,"tweenEasing":0,"rotate":43.86},{"duration":0,"rotate":24.05}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.01},{"duration":7,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":9,"tweenEasing":0,"x":0.98},{"duration":0}]},{"name":"foot_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.22,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.24,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.23,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.2,"y":-0.01},{"duration":7,"tweenEasing":0,"x":-0.18,"y":-0.04},{"duration":7,"tweenEasing":0,"x":-0.15,"y":0.02},{"duration":3,"tweenEasing":0,"x":-0.16,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.17},{"duration":5,"tweenEasing":0,"x":-0.17},{"duration":2,"tweenEasing":0,"x":-0.16,"y":0.06},{"duration":3,"tweenEasing":0,"x":-0.16,"y":0.03},{"duration":7,"tweenEasing":0,"x":-0.16,"y":0.03},{"duration":9,"tweenEasing":0,"x":-0.18,"y":-0.02},{"duration":0,"x":-0.21,"y":-0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-20.1},{"duration":2,"tweenEasing":0,"rotate":-16.61},{"duration":5,"tweenEasing":0,"rotate":-12.35},{"duration":2,"tweenEasing":0,"rotate":10.49},{"duration":7,"tweenEasing":0,"rotate":13.25},{"duration":7,"tweenEasing":0,"rotate":3.01},{"duration":3,"tweenEasing":0,"rotate":5.76},{"duration":3,"tweenEasing":0,"rotate":23.03},{"duration":5,"tweenEasing":0,"rotate":20.28},{"duration":2,"tweenEasing":0,"rotate":12.78},{"duration":3,"tweenEasing":0,"rotate":10.78},{"duration":7,"tweenEasing":0,"rotate":8.52},{"duration":9,"tweenEasing":0,"rotate":-0.75},{"duration":0,"rotate":-16.03}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":20,"tweenEasing":0},{"duration":9,"tweenEasing":0},{"duration":0,"x":0.98}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.53,"y":-0.14},{"duration":7,"tweenEasing":0,"x":1.52,"y":-0.1},{"duration":2,"tweenEasing":0,"x":1.51,"y":-0.07},{"duration":7,"tweenEasing":0,"x":1.51,"y":-0.09},{"duration":7,"tweenEasing":0,"x":1.51,"y":-0.12},{"duration":3,"tweenEasing":0,"x":1.49,"y":-0.17},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.18},{"duration":2,"tweenEasing":0,"x":1.47,"y":-0.18},{"duration":3,"tweenEasing":0,"x":1.48,"y":-0.2},{"duration":2,"tweenEasing":0,"x":1.5,"y":-0.16},{"duration":3,"tweenEasing":0,"x":1.52,"y":-0.15},{"duration":7,"tweenEasing":0,"x":1.55,"y":-0.16},{"duration":9,"tweenEasing":0,"x":1.56,"y":-0.1},{"duration":0,"x":1.54,"y":-0.11}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-6.94},{"duration":7,"tweenEasing":0,"rotate":-7.25},{"duration":2,"tweenEasing":0,"rotate":-19},{"duration":7,"tweenEasing":0,"rotate":-21.75},{"duration":7,"tweenEasing":0,"rotate":-31.28},{"duration":3,"tweenEasing":0,"rotate":-44.59},{"duration":3,"tweenEasing":0,"rotate":-49.88},{"duration":2,"tweenEasing":0,"rotate":-47.9},{"duration":3,"tweenEasing":0,"rotate":-44.39},{"duration":2,"tweenEasing":0,"rotate":-31.6},{"duration":3,"tweenEasing":0,"rotate":-20.56},{"duration":7,"tweenEasing":0,"rotate":-18.8},{"duration":9,"tweenEasing":0,"rotate":-26.94},{"duration":0,"rotate":-13.54}],"scaleFrame":[{"duration":19,"tweenEasing":0},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":10,"tweenEasing":0,"y":0.99},{"duration":7,"tweenEasing":0,"y":0.99},{"duration":9,"tweenEasing":0,"x":1.01},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":58,"value":-1}]}]},{"duration":66,"fadeInTime":0.1,"name":"Dying","bone":[{"name":"pelvis","translateFrame":[{"duration":6,"tweenEasing":0},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":2,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":10,"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.36,"y":-0.17},{"duration":2,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":3,"tweenEasing":0,"x":-0.06,"y":-0.16},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.64,"y":-0.33},{"duration":9,"tweenEasing":0,"x":0.17,"y":-0.32},{"duration":0,"y":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":17.28},{"duration":4,"tweenEasing":0,"rotate":5.5},{"duration":2,"tweenEasing":0,"rotate":-5.5},{"duration":10,"tweenEasing":0,"rotate":-6},{"duration":10,"tweenEasing":0,"rotate":1.75},{"duration":5,"tweenEasing":0,"rotate":5.5},{"duration":2,"tweenEasing":0,"rotate":-7},{"duration":3,"tweenEasing":0,"rotate":-10.51},{"duration":3,"tweenEasing":0,"rotate":6.51},{"duration":2,"tweenEasing":0,"rotate":20.04},{"duration":3,"tweenEasing":0,"rotate":41.37},{"duration":4,"tweenEasing":0,"rotate":82.99},{"duration":3,"tweenEasing":0,"rotate":84},{"duration":9,"tweenEasing":0,"rotate":87.25},{"duration":0,"rotate":85}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.98},{"duration":10,"tweenEasing":0,"x":0.98},{"duration":5,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.04},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":9,"x":1.03}]},{"name":"chest","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.71},{"duration":3,"tweenEasing":0,"x":-0.03,"y":0.28},{"tweenEasing":0,"x":0.05,"y":0.48},{"duration":2,"tweenEasing":0,"x":-0.2,"y":0.86},{"duration":10,"tweenEasing":0,"x":-0.27,"y":0.94},{"duration":10,"tweenEasing":0,"x":-0.12,"y":0.54},{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.06},{"duration":2,"tweenEasing":0,"x":0.04,"y":0.04},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.05},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.35},{"duration":2,"tweenEasing":0,"x":-0.12,"y":0.05},{"duration":3,"tweenEasing":0,"x":-0.19,"y":0.43},{"duration":4,"tweenEasing":0,"x":-0.13,"y":0.39},{"duration":3,"tweenEasing":0,"x":-0.1,"y":0.23},{"duration":4,"tweenEasing":0,"x":-0.1,"y":0.26},{"duration":5,"tweenEasing":0,"x":-0.12,"y":0.53},{"duration":0,"x":-0.07,"y":0.25}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":44.35},{"duration":3,"tweenEasing":0,"rotate":24.74},{"tweenEasing":0,"rotate":10.26},{"duration":2,"tweenEasing":0,"rotate":8.29},{"duration":10,"tweenEasing":0,"rotate":4.32},{"duration":10,"tweenEasing":0,"rotate":1.32},{"duration":5,"tweenEasing":0,"rotate":1.88},{"duration":2,"tweenEasing":0,"rotate":-2.13},{"duration":3,"tweenEasing":0,"rotate":-0.44},{"duration":3,"tweenEasing":0,"rotate":15.76},{"duration":2,"tweenEasing":0,"rotate":37.03},{"duration":3,"tweenEasing":0,"rotate":17.21},{"duration":4,"tweenEasing":0,"rotate":-25.71},{"duration":3,"tweenEasing":0,"rotate":15.88},{"duration":4,"tweenEasing":0,"rotate":-3.38},{"duration":5,"tweenEasing":0,"rotate":12.65},{"duration":0,"rotate":15.67}],"scaleFrame":[{"duration":6,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":10,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.93},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0},{"duration":5,"x":1.01}]},{"name":"shouder_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-2.6,"y":7.58},{"duration":3,"tweenEasing":0,"x":1.4,"y":8.29},{"tweenEasing":0,"x":3.2,"y":6.9},{"duration":2,"tweenEasing":0,"x":1.67,"y":5.49},{"duration":10,"tweenEasing":0,"x":-0.81,"y":4.98},{"duration":10,"tweenEasing":0,"x":-1.99,"y":5.37},{"duration":5,"tweenEasing":0,"x":0.57,"y":5.79},{"duration":2,"tweenEasing":0,"x":0.83,"y":4.7},{"duration":3,"tweenEasing":0,"x":0.91,"y":3.96},{"duration":3,"tweenEasing":0,"x":-0.44,"y":2.83},{"duration":2,"tweenEasing":0,"x":-3.08,"y":4.1},{"duration":3,"tweenEasing":0,"x":-1.24,"y":6.75},{"duration":4,"tweenEasing":0,"x":-3.48,"y":14.35},{"duration":3,"tweenEasing":0,"x":-0.97,"y":13.13},{"duration":4,"tweenEasing":0,"x":-1.45,"y":13.55},{"duration":5,"tweenEasing":0,"x":-0.61,"y":12.94},{"duration":0,"x":-0.52,"y":12.96}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-81.03},{"duration":3,"tweenEasing":0,"rotate":69.12},{"tweenEasing":0,"rotate":70.36},{"duration":2,"tweenEasing":0,"rotate":7.92},{"duration":10,"tweenEasing":0,"rotate":-7.21},{"duration":10,"tweenEasing":0,"rotate":6.38},{"duration":5,"tweenEasing":0,"rotate":-12.29},{"duration":2,"tweenEasing":0,"rotate":32.33},{"duration":3,"tweenEasing":0,"rotate":78.92},{"duration":3,"tweenEasing":0,"rotate":23.95},{"duration":2,"tweenEasing":0,"rotate":-17.09},{"duration":3,"tweenEasing":0,"rotate":-30.39},{"duration":4,"tweenEasing":0,"rotate":-8.51},{"duration":3,"tweenEasing":0,"rotate":-68.19},{"duration":4,"tweenEasing":0,"rotate":-62.93},{"duration":5,"tweenEasing":0,"rotate":-55.67},{"duration":0,"rotate":-55.92}]},{"name":"shouder_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":1.86,"y":-11.59},{"duration":2,"tweenEasing":0,"x":-0.92,"y":-12.92},{"duration":3,"tweenEasing":0,"x":-1.4,"y":-12.54},{"tweenEasing":0,"x":-0.47,"y":-9.24},{"duration":2,"tweenEasing":0,"x":0.23,"y":-7.51},{"duration":10,"tweenEasing":0,"x":2.02,"y":-4.95},{"duration":10,"tweenEasing":0,"x":4.02,"y":-5.5},{"duration":5,"tweenEasing":0,"x":1.57,"y":-6.9},{"duration":2,"tweenEasing":0,"x":1.38,"y":-5.55},{"duration":3,"tweenEasing":0,"x":1.22,"y":-4.68},{"duration":3,"tweenEasing":0,"x":2,"y":-3.25},{"duration":2,"tweenEasing":0,"x":3.13,"y":-4.25},{"duration":3,"tweenEasing":0,"x":1.42,"y":-8.87},{"duration":4,"tweenEasing":0,"x":2.96,"y":-16.32},{"duration":3,"tweenEasing":0,"x":-0.25,"y":-14.02},{"duration":4,"tweenEasing":0,"x":0.16,"y":-14.36},{"duration":5,"tweenEasing":0,"x":-0.56,"y":-13.82},{"duration":0,"x":-0.59,"y":-13.92}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-106.06},{"duration":2,"tweenEasing":0,"rotate":-8.75},{"duration":3,"tweenEasing":0,"rotate":3.7},{"tweenEasing":0,"rotate":16.47},{"duration":2,"tweenEasing":0,"rotate":17.43},{"duration":10,"tweenEasing":0,"rotate":16.36},{"duration":10,"tweenEasing":0,"rotate":1.1},{"duration":5,"tweenEasing":0,"rotate":25.08},{"duration":2,"tweenEasing":0,"rotate":27.28},{"duration":3,"tweenEasing":0,"rotate":21},{"duration":3,"tweenEasing":0,"rotate":-9.44},{"duration":2,"tweenEasing":0,"rotate":-30.15},{"duration":3,"tweenEasing":0,"rotate":1.96},{"duration":4,"tweenEasing":0,"rotate":-20.8},{"duration":3,"tweenEasing":0,"rotate":-28.08},{"duration":4,"tweenEasing":0,"rotate":-20.04},{"duration":5,"tweenEasing":0,"rotate":-19.34},{"duration":0,"rotate":-19.1}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.08,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.09,"y":0.99},{"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":10,"tweenEasing":0,"x":1.01},{"duration":5,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.86,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":3,"tweenEasing":0,"x":0.81,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.78,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.82},{"duration":4,"tweenEasing":0,"x":0.72,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.19},{"duration":4,"tweenEasing":0,"x":1.18},{"duration":5,"tweenEasing":0,"x":1.2},{"duration":0,"x":1.15}]},{"name":"forearm_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":-0.08,"y":0.1},{"duration":2,"tweenEasing":0,"x":-0.26,"y":-0.19},{"duration":3,"tweenEasing":0,"x":-0.3,"y":-0.21},{"tweenEasing":0,"x":-0.21,"y":-0.26},{"duration":2,"tweenEasing":0,"x":-0.15,"y":-0.27},{"duration":10,"tweenEasing":0,"x":-0.08,"y":-0.24},{"duration":10,"tweenEasing":0,"x":-0.07,"y":-0.15},{"duration":5,"tweenEasing":0,"x":-0.16,"y":-0.27},{"duration":2,"tweenEasing":0,"x":-0.02,"y":-0.22},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.12},{"duration":3,"tweenEasing":0,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.09,"y":-0.13},{"duration":4,"tweenEasing":0,"x":0.03,"y":-0.06},{"duration":3,"tweenEasing":0,"x":-0.24,"y":-0.05},{"duration":4,"tweenEasing":0,"x":-0.23,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.27,"y":-0.04},{"duration":0,"x":-0.24,"y":-0.05}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":-1.88},{"duration":2,"tweenEasing":0,"rotate":-14.52},{"duration":3,"tweenEasing":0,"rotate":-11.52},{"tweenEasing":0,"rotate":-12.78},{"duration":2,"tweenEasing":0,"rotate":-12.29},{"duration":10,"tweenEasing":0,"rotate":-7.79},{"duration":10,"tweenEasing":0,"rotate":11.55},{"duration":5,"tweenEasing":0,"rotate":1.93},{"duration":2,"tweenEasing":0,"rotate":4.68},{"duration":3,"tweenEasing":0,"rotate":5.43},{"duration":3,"tweenEasing":0,"rotate":4.15},{"duration":2,"tweenEasing":0,"rotate":-0.93},{"duration":3,"tweenEasing":0,"rotate":5.3},{"duration":4,"tweenEasing":0,"rotate":40.88},{"duration":3,"tweenEasing":0,"rotate":36.08},{"duration":4,"tweenEasing":0,"rotate":29.81},{"duration":5,"tweenEasing":0,"rotate":39.09},{"duration":0,"rotate":40.61}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.87,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.86,"y":1.01},{"tweenEasing":0,"x":0.83},{"duration":2,"tweenEasing":0,"x":0.83},{"duration":10,"tweenEasing":0,"x":0.85},{"duration":10,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":5,"tweenEasing":0,"x":0.82,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.76,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.75,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.7,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.66},{"duration":4,"tweenEasing":0,"x":0.66},{"duration":3,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.66},{"duration":5,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":0,"x":0.76,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.11,"y":0.24},{"duration":3,"tweenEasing":0,"x":-1.38,"y":0.34},{"tweenEasing":0,"x":-2.98,"y":0.44},{"duration":2,"tweenEasing":0,"x":-2.4,"y":0.55},{"duration":10,"tweenEasing":0,"x":0.17,"y":0.4},{"duration":10,"tweenEasing":0,"x":-0.15,"y":0.44},{"duration":5,"tweenEasing":0,"x":0.08,"y":0.4},{"duration":2,"tweenEasing":0,"x":0.6,"y":0.37},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.3},{"duration":3,"tweenEasing":0,"x":0.72,"y":0.28},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.24},{"duration":3,"tweenEasing":0,"x":0.11,"y":0.23},{"duration":4,"tweenEasing":0,"x":-3.42,"y":0.06},{"duration":3,"tweenEasing":0,"x":-2.78,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-2.47,"y":-0.01},{"duration":5,"tweenEasing":0,"x":-3.04},{"duration":0,"x":-2.96,"y":0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-10.55},{"duration":3,"tweenEasing":0,"rotate":-146.71},{"tweenEasing":0,"rotate":-125.63},{"duration":2,"tweenEasing":0,"rotate":-48.42},{"duration":10,"tweenEasing":0,"rotate":-26.84},{"duration":10,"tweenEasing":0,"rotate":-54.95},{"duration":5,"tweenEasing":0,"rotate":13.27},{"duration":2,"tweenEasing":0,"rotate":-4.33},{"duration":3,"tweenEasing":0,"rotate":-41.41},{"duration":3,"tweenEasing":0,"rotate":4.18},{"duration":2,"tweenEasing":0,"rotate":-9.62},{"duration":3,"tweenEasing":0,"rotate":-4.1},{"duration":4,"tweenEasing":0,"rotate":-31.67},{"duration":3,"tweenEasing":0,"rotate":-4.85},{"duration":4,"tweenEasing":0,"rotate":12.72},{"duration":5,"tweenEasing":0,"rotate":-9.87},{"duration":0,"rotate":-12.37}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.89,"y":0.99},{"tweenEasing":0,"x":0.82,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.77,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.9,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.92},{"duration":2,"tweenEasing":0,"x":0.89},{"duration":3,"tweenEasing":0,"x":0.67},{"duration":3,"tweenEasing":0,"x":0.87,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":4,"tweenEasing":0,"x":0.74},{"duration":3,"tweenEasing":0,"x":0.77},{"duration":4,"tweenEasing":0,"x":0.74,"y":0.99},{"duration":5,"x":0.72,"y":0.99}]},{"name":"hand_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.17,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.09,"y":-0.2},{"tweenEasing":0,"x":-0.19,"y":-0.2},{"duration":2,"tweenEasing":0,"x":-0.25,"y":-0.08},{"duration":10,"tweenEasing":0,"x":-0.07,"y":-0.02},{"duration":10,"tweenEasing":0,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.02,"y":0.11},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.15},{"duration":3,"tweenEasing":0,"x":-0.05,"y":0.29},{"duration":3,"tweenEasing":0,"x":0.13,"y":0.17},{"duration":2,"tweenEasing":0,"x":0.08,"y":0.03},{"duration":3,"tweenEasing":0,"x":0.13},{"duration":4,"tweenEasing":0,"x":0.25,"y":-0.14},{"duration":3,"tweenEasing":0,"x":0.24,"y":-0.17},{"duration":4,"tweenEasing":0,"x":0.24,"y":-0.19},{"duration":5,"tweenEasing":0,"x":0.24,"y":-0.16},{"duration":0,"x":0.23,"y":-0.17}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":4.03},{"duration":3,"tweenEasing":0,"rotate":-12.06},{"tweenEasing":0,"rotate":152.64},{"duration":2,"tweenEasing":0,"rotate":130.33},{"duration":10,"tweenEasing":0,"rotate":134.36},{"duration":10,"tweenEasing":0,"rotate":144.41},{"duration":5,"tweenEasing":0,"rotate":90.23},{"duration":2,"tweenEasing":0,"rotate":79.72},{"duration":3,"tweenEasing":0,"rotate":71.89},{"duration":3,"tweenEasing":0,"rotate":59.63},{"duration":2,"tweenEasing":0,"rotate":110.84},{"duration":3,"tweenEasing":0,"rotate":121.36},{"duration":4,"tweenEasing":0,"rotate":146.89},{"duration":3,"tweenEasing":0,"rotate":155.42},{"duration":4,"tweenEasing":0,"rotate":148.64},{"duration":5,"tweenEasing":0,"rotate":148.89},{"duration":0,"rotate":149.89}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.65,"y":0.99},{"tweenEasing":0,"x":0.69},{"duration":2,"tweenEasing":0},{"duration":27,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":12,"x":0.97}]},{"name":"hand_l","translateFrame":[{"duration":4,"tweenEasing":0,"x":-0.12,"y":0.09},{"duration":2,"tweenEasing":0,"x":0.05,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.06},{"tweenEasing":0,"x":0.13},{"duration":2,"tweenEasing":0,"x":0.16,"y":0.02},{"duration":10,"tweenEasing":0,"x":0.16,"y":0.05},{"duration":10,"tweenEasing":0,"x":0.09,"y":0.05},{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.21,"y":0.04},{"duration":3,"tweenEasing":0,"x":0.11,"y":0.11},{"duration":3,"tweenEasing":0,"x":0.06,"y":0.2},{"duration":2,"tweenEasing":0,"x":-1.02,"y":0.24},{"duration":3,"tweenEasing":0,"x":-3.04,"y":0.06},{"duration":4,"tweenEasing":0,"x":-0.37,"y":0.04},{"duration":3,"tweenEasing":0,"x":-0.44,"y":0.03},{"duration":4,"tweenEasing":0,"x":-0.44,"y":0.05},{"duration":5,"tweenEasing":0,"x":-0.19,"y":0.01},{"duration":0,"x":-0.01,"y":0.04}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":3.25},{"duration":2,"tweenEasing":0,"rotate":15.58},{"duration":3,"tweenEasing":0,"rotate":32.47},{"tweenEasing":0,"rotate":59.31},{"duration":2,"tweenEasing":0,"rotate":63.85},{"duration":10,"tweenEasing":0,"rotate":64.64},{"duration":10,"tweenEasing":0,"rotate":35.73},{"duration":5,"tweenEasing":0,"rotate":26.18},{"duration":2,"tweenEasing":0,"rotate":7.62},{"duration":3,"tweenEasing":0,"rotate":4.93},{"duration":3,"tweenEasing":0,"rotate":12.32},{"duration":2,"tweenEasing":0,"rotate":37.9},{"duration":3,"tweenEasing":0,"rotate":48.02},{"duration":4,"tweenEasing":0,"rotate":51.68},{"duration":3,"tweenEasing":0,"rotate":13.57},{"duration":4,"tweenEasing":0,"rotate":27.35},{"duration":5,"tweenEasing":0,"rotate":3.06},{"duration":0,"rotate":-0.06}],"scaleFrame":[{"duration":4,"tweenEasing":0,"x":1.01,"y":1.02},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.91},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.92},{"tweenEasing":0,"x":0.98,"y":0.92},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.91},{"duration":10,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":10,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":5,"tweenEasing":0,"x":0.96,"y":0.86},{"duration":2,"tweenEasing":0,"x":0.96,"y":0.83},{"duration":3,"tweenEasing":0,"x":0.96,"y":0.82},{"duration":3,"tweenEasing":0,"x":0.94,"y":0.76},{"duration":2,"tweenEasing":0,"x":0.93,"y":0.75},{"duration":3,"tweenEasing":0,"x":0.94,"y":0.75},{"duration":4,"tweenEasing":0,"y":0.97},{"duration":7,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":5,"tweenEasing":0,"x":1.02,"y":1.02},{"duration":0,"x":1.01,"y":1.02}]},{"name":"weapon_hand_l","translateFrame":[{"duration":4,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":10,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":23,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":3,"tweenEasing":0,"x":0.01,"y":0.01},{"duration":16,"x":0.01}],"rotateFrame":[{"duration":4,"tweenEasing":0,"rotate":4.42},{"duration":2,"tweenEasing":0,"rotate":24.72},{"duration":3,"tweenEasing":0,"rotate":16.51},{"tweenEasing":0,"rotate":9.6},{"duration":2,"tweenEasing":0,"rotate":9.71},{"duration":10,"tweenEasing":0,"rotate":11.52},{"duration":10,"tweenEasing":0,"rotate":25.31},{"duration":5,"tweenEasing":0,"rotate":20.24},{"duration":2,"tweenEasing":0,"rotate":29.56},{"duration":3,"tweenEasing":0,"rotate":31.39},{"duration":3,"tweenEasing":0,"rotate":27.05},{"duration":2,"tweenEasing":0,"rotate":-4.88},{"duration":3,"tweenEasing":0,"rotate":-52.41},{"duration":4,"tweenEasing":0,"rotate":-105.87},{"duration":3,"tweenEasing":0,"rotate":-81.38},{"duration":4,"tweenEasing":0,"rotate":-80.53},{"duration":5,"tweenEasing":0,"rotate":-79.97},{"duration":0,"rotate":-80.88}]},{"name":"weapon_hand_r","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":10,"tweenEasing":0},{"duration":10,"tweenEasing":0,"x":0.01},{"duration":7,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":16,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":0,"x":-0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-6.02},{"duration":3,"tweenEasing":0,"rotate":93.01},{"tweenEasing":0,"rotate":105.4},{"duration":2,"tweenEasing":0,"rotate":104.02},{"duration":27,"tweenEasing":0,"rotate":107.78},{"duration":3,"tweenEasing":0,"rotate":107.78},{"duration":3,"tweenEasing":0,"rotate":121.04},{"duration":2,"tweenEasing":0,"rotate":155.41},{"duration":3,"tweenEasing":0,"rotate":159.93},{"duration":4,"tweenEasing":0,"rotate":-179.75},{"duration":12,"rotate":-159.98}]},{"name":"root","translateFrame":[{"duration":6,"tweenEasing":0,"x":-9.14,"y":0.61},{"duration":4,"tweenEasing":0,"x":-16.58,"y":-0.55},{"duration":2,"tweenEasing":0,"x":-16.78,"y":-1.59},{"duration":10,"tweenEasing":0,"x":-15.62,"y":-0.25},{"duration":10,"tweenEasing":0,"x":-16.44,"y":0.69},{"duration":5,"tweenEasing":0,"x":-13.75,"y":-0.25},{"duration":2,"tweenEasing":0,"x":-5.66,"y":0.3},{"duration":6,"tweenEasing":0,"x":-2.27,"y":6.86},{"duration":5,"tweenEasing":0,"x":0.44,"y":7.93},{"duration":16,"tweenEasing":0,"x":3.54,"y":12.17},{"duration":0,"x":4.14,"y":13.02}]},{"name":"thigh_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":0.35,"y":-2.89},{"duration":3,"tweenEasing":0,"x":0.66,"y":-3.94},{"tweenEasing":0,"x":0.86,"y":-2.65},{"duration":2,"tweenEasing":0,"x":1.14,"y":-2.48},{"duration":10,"tweenEasing":0,"x":1.27,"y":-2},{"duration":10,"tweenEasing":0,"x":1.19,"y":-2.51},{"duration":5,"tweenEasing":0,"x":1.51,"y":-3.51},{"duration":2,"tweenEasing":0,"x":1.57,"y":-3.25},{"duration":3,"tweenEasing":0,"x":1.55,"y":-2.85},{"duration":3,"tweenEasing":0,"x":0.72,"y":-1.7},{"duration":2,"tweenEasing":0,"x":-0.09,"y":-2.67},{"duration":3,"tweenEasing":0,"x":0.79,"y":-4.22},{"duration":4,"tweenEasing":0,"x":2.11,"y":-4.38},{"duration":3,"tweenEasing":0,"x":0.93,"y":-4.52},{"duration":4,"tweenEasing":0,"x":1.04,"y":-4.38},{"duration":5,"tweenEasing":0,"x":1.3,"y":-4.05},{"duration":0,"x":1.36,"y":-3.69}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":-44.61},{"duration":3,"tweenEasing":0,"rotate":-48.38},{"tweenEasing":0,"rotate":-43.86},{"duration":2,"tweenEasing":0,"rotate":-43.35},{"duration":10,"tweenEasing":0,"rotate":-54.15},{"duration":10,"tweenEasing":0,"rotate":-64.69},{"duration":5,"tweenEasing":0,"rotate":-42.6},{"duration":2,"tweenEasing":0,"rotate":-29.05},{"duration":3,"tweenEasing":0,"rotate":-2.5},{"duration":3,"tweenEasing":0,"rotate":2},{"duration":2,"tweenEasing":0,"rotate":14.27},{"duration":3,"tweenEasing":0,"rotate":37.86},{"duration":4,"tweenEasing":0,"rotate":71.48},{"duration":3,"tweenEasing":0,"rotate":61.96},{"duration":4,"tweenEasing":0,"rotate":63.96},{"duration":5,"tweenEasing":0,"rotate":67.22},{"duration":0,"rotate":63.46}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":16,"x":1.02,"y":0.99}]},{"name":"thigh_l","translateFrame":[{"tweenEasing":0,"x":-0.35,"y":2.85},{"duration":5,"tweenEasing":0,"x":-0.32,"y":4.22},{"duration":3,"tweenEasing":0,"x":-0.64,"y":3.87},{"tweenEasing":0,"x":-1.17,"y":3.12},{"duration":2,"tweenEasing":0,"x":-1.12,"y":2.45},{"duration":10,"tweenEasing":0,"x":-1.24,"y":1.98},{"duration":10,"tweenEasing":0,"x":-1.16,"y":2.48},{"duration":5,"tweenEasing":0,"x":-1.47,"y":3.46},{"duration":2,"tweenEasing":0,"x":-1.54,"y":3.21},{"duration":3,"tweenEasing":0,"x":-1.52,"y":2.82},{"duration":3,"tweenEasing":0,"x":-0.02,"y":1.35},{"duration":2,"tweenEasing":0,"x":0.09,"y":2.61},{"duration":3,"tweenEasing":0,"x":-0.91,"y":3.82},{"duration":4,"tweenEasing":0,"x":-2.08,"y":4.29},{"duration":3,"tweenEasing":0,"x":-2.18,"y":3.8},{"duration":4,"tweenEasing":0,"x":-0.69,"y":3.67},{"duration":5,"tweenEasing":0,"x":-0.67,"y":3.66},{"duration":0,"x":-1.32,"y":3.62}],"rotateFrame":[{"tweenEasing":0,"rotate":-23.85},{"duration":5,"tweenEasing":0,"rotate":39},{"duration":3,"tweenEasing":0,"rotate":-6.78},{"tweenEasing":0,"rotate":12.3},{"duration":2,"tweenEasing":0,"rotate":19.83},{"duration":10,"tweenEasing":0,"rotate":16.07},{"duration":10,"tweenEasing":0,"rotate":-1.5},{"duration":5,"tweenEasing":0,"rotate":32.36},{"duration":2,"tweenEasing":0,"rotate":36.86},{"duration":3,"tweenEasing":0,"rotate":49.37},{"duration":3,"tweenEasing":0,"rotate":66.15},{"duration":2,"tweenEasing":0,"rotate":87.74},{"duration":3,"tweenEasing":0,"rotate":100.55},{"duration":4,"tweenEasing":0,"rotate":114.09},{"duration":3,"tweenEasing":0,"rotate":118.87},{"duration":4,"tweenEasing":0,"rotate":120.64},{"duration":5,"tweenEasing":0,"rotate":117.35},{"duration":0,"rotate":116.86}],"scaleFrame":[{"tweenEasing":0},{"duration":5,"tweenEasing":0,"x":0.77,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.91},{"tweenEasing":0,"x":0.9},{"duration":2,"tweenEasing":0,"x":0.89},{"duration":10,"tweenEasing":0,"x":0.87},{"duration":10,"tweenEasing":0,"x":0.9},{"duration":5,"tweenEasing":0,"x":0.86,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.89,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.81,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.91},{"duration":2,"tweenEasing":0,"x":0.93},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":4,"tweenEasing":0,"x":0.92,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.73,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.66,"y":1.01},{"duration":5,"tweenEasing":0,"x":0.82,"y":1.01},{"duration":0,"x":0.79,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":6,"tweenEasing":0,"y":-0.04},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.04},{"tweenEasing":0,"x":-0.03,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":10,"tweenEasing":0,"x":-0.06,"y":-0.02},{"duration":10,"tweenEasing":0,"x":-0.04,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.02},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.04},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.06},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.04},{"duration":4,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":5,"tweenEasing":0,"x":0.02,"y":-0.06},{"duration":0,"x":0.02,"y":-0.03}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":31.33},{"duration":3,"tweenEasing":0,"rotate":45.37},{"tweenEasing":0,"rotate":32.33},{"duration":2,"tweenEasing":0,"rotate":30.83},{"duration":10,"tweenEasing":0,"rotate":51.13},{"duration":10,"tweenEasing":0,"rotate":64.19},{"duration":5,"tweenEasing":0,"rotate":57.91},{"duration":2,"tweenEasing":0,"rotate":66.96},{"duration":3,"tweenEasing":0,"rotate":78.23},{"duration":3,"tweenEasing":0,"rotate":63.48},{"duration":2,"tweenEasing":0,"rotate":50.96},{"duration":3,"tweenEasing":0,"rotate":43.38},{"duration":4,"tweenEasing":0,"rotate":39.35},{"duration":3,"tweenEasing":0,"rotate":31.56},{"duration":4,"tweenEasing":0,"rotate":15.28},{"duration":5,"tweenEasing":0,"rotate":10.01},{"duration":0,"rotate":16.53}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04},{"tweenEasing":0,"x":1.04,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":10,"tweenEasing":0,"x":1.02},{"duration":10,"tweenEasing":0,"x":1.03},{"duration":5,"tweenEasing":0,"x":1.04},{"duration":2,"tweenEasing":0,"x":1.04},{"duration":3,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":4,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.05},{"duration":4,"tweenEasing":0,"x":1.05},{"duration":5,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":0,"x":1.05}]},{"name":"calf_l","translateFrame":[{"tweenEasing":0,"x":-0.04},{"duration":5,"tweenEasing":0,"x":0.05,"y":-0.12},{"duration":3,"tweenEasing":0,"x":0.04,"y":-0.03},{"tweenEasing":0,"x":0.05,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.05,"y":-0.07},{"duration":10,"tweenEasing":0,"x":0.07,"y":-0.06},{"duration":10,"tweenEasing":0,"x":0.03,"y":-0.05},{"duration":5,"tweenEasing":0,"x":0.04,"y":-0.12},{"duration":2,"tweenEasing":0,"x":0.04,"y":-0.06},{"duration":3,"tweenEasing":0,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.03,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.04,"y":-0.07},{"duration":3,"tweenEasing":0,"x":-0.05,"y":-0.07},{"duration":4,"tweenEasing":0,"x":-0.05,"y":-0.04},{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.08},{"duration":4,"tweenEasing":0,"x":-0.04,"y":-0.07},{"duration":5,"tweenEasing":0,"x":-0.06,"y":-0.05},{"duration":0,"x":-0.05,"y":-0.06}],"rotateFrame":[{"tweenEasing":0,"rotate":41.36},{"duration":5,"tweenEasing":0,"rotate":16.91},{"duration":3,"tweenEasing":0,"rotate":40.79},{"tweenEasing":0,"rotate":14.94},{"duration":2,"tweenEasing":0,"rotate":6.91},{"duration":10,"tweenEasing":0,"rotate":24.2},{"duration":10,"tweenEasing":0,"rotate":45.3},{"duration":5,"tweenEasing":0,"rotate":8.15},{"duration":2,"tweenEasing":0,"rotate":22.24},{"duration":3,"tweenEasing":0,"rotate":48.05},{"duration":3,"tweenEasing":0,"rotate":31.31},{"duration":2,"tweenEasing":0,"rotate":16.24},{"duration":3,"tweenEasing":0,"rotate":5.93},{"duration":4,"tweenEasing":0,"rotate":-6.36},{"duration":3,"tweenEasing":0,"rotate":16.85},{"duration":4,"tweenEasing":0,"rotate":10.27},{"duration":5,"tweenEasing":0,"rotate":-5.17},{"duration":0,"rotate":-6.69}],"scaleFrame":[{"tweenEasing":0,"x":0.95},{"duration":5,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":10,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":10,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.99},{"duration":4,"tweenEasing":0,"x":1.01},{"duration":3,"tweenEasing":0,"x":1.05,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.05,"y":0.99},{"duration":5,"x":1.03}]},{"name":"foot_r","translateFrame":[{"duration":6,"tweenEasing":0,"x":-0.18,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.21,"y":-0.01},{"tweenEasing":0,"x":-0.21,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.2,"y":-0.01},{"duration":10,"tweenEasing":0,"x":-0.21,"y":-0.06},{"duration":10,"tweenEasing":0,"x":-0.2,"y":-0.04},{"duration":5,"tweenEasing":0,"x":-0.22},{"duration":2,"tweenEasing":0,"x":-0.21},{"duration":3,"tweenEasing":0,"x":-0.21,"y":0.01},{"duration":3,"tweenEasing":0,"x":-0.25},{"duration":2,"tweenEasing":0,"x":-0.26,"y":-0.01},{"duration":3,"tweenEasing":0,"x":-0.25,"y":0.02},{"duration":4,"tweenEasing":0,"x":-0.18,"y":0.01},{"duration":3,"tweenEasing":0,"x":-0.19,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.22,"y":0.01},{"duration":5,"tweenEasing":0,"x":-0.22,"y":0.03},{"duration":0,"x":-0.22,"y":0.01}],"rotateFrame":[{"duration":6,"tweenEasing":0,"rotate":13.28},{"duration":3,"tweenEasing":0,"rotate":3.76},{"tweenEasing":0,"rotate":12.78},{"duration":2,"tweenEasing":0,"rotate":14.03},{"duration":10,"tweenEasing":0,"rotate":3.51},{"duration":10,"tweenEasing":0,"rotate":0.75},{"duration":5,"tweenEasing":0,"rotate":-15.05},{"duration":2,"tweenEasing":0,"rotate":48.6},{"duration":3,"tweenEasing":0,"rotate":27.29},{"duration":3,"tweenEasing":0,"rotate":49.32},{"duration":2,"tweenEasing":0,"rotate":65.14},{"duration":3,"tweenEasing":0,"rotate":51.39},{"duration":4,"tweenEasing":0,"rotate":12.5},{"duration":3,"tweenEasing":0,"rotate":53.41},{"duration":4,"tweenEasing":0,"rotate":38.58},{"duration":5,"tweenEasing":0,"rotate":35.06},{"duration":0,"rotate":35.57}],"scaleFrame":[{"duration":32,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.92},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":5,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":0,"y":0.99}]},{"name":"foot_l","translateFrame":[{"tweenEasing":0,"x":1.51,"y":-0.15},{"duration":5,"tweenEasing":0,"x":1.38,"y":-0.19},{"duration":3,"tweenEasing":0,"x":1.4,"y":-0.19},{"tweenEasing":0,"x":1.43,"y":-0.18},{"duration":2,"tweenEasing":0,"x":1.44,"y":-0.2},{"duration":10,"tweenEasing":0,"x":1.41,"y":-0.2},{"duration":10,"tweenEasing":0,"x":1.4,"y":-0.2},{"duration":5,"tweenEasing":0,"x":1.4,"y":-0.2},{"duration":2,"tweenEasing":0,"x":1.43,"y":-0.18},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.17},{"duration":3,"tweenEasing":0,"x":1.39,"y":-0.16},{"duration":2,"tweenEasing":0,"x":1.37,"y":-0.13},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.13},{"duration":4,"tweenEasing":0,"x":1.37,"y":-0.14},{"duration":3,"tweenEasing":0,"x":1.42,"y":-0.12},{"duration":4,"tweenEasing":0,"x":1.4,"y":-0.11},{"duration":5,"tweenEasing":0,"x":1.37,"y":-0.12},{"duration":0,"x":1.38,"y":-0.1}],"rotateFrame":[{"tweenEasing":0,"rotate":-17.55},{"duration":5,"tweenEasing":0,"rotate":-55.87},{"duration":3,"tweenEasing":0,"rotate":-34.03},{"tweenEasing":0,"rotate":-27.28},{"duration":2,"tweenEasing":0,"rotate":-26.79},{"duration":10,"tweenEasing":0,"rotate":-40.34},{"duration":10,"tweenEasing":0,"rotate":-43.84},{"duration":5,"tweenEasing":0,"rotate":-40.58},{"duration":2,"tweenEasing":0,"rotate":27.58},{"duration":3,"tweenEasing":0,"rotate":-2.01},{"duration":3,"tweenEasing":0,"rotate":25.82},{"duration":2,"tweenEasing":0,"rotate":8.52},{"duration":3,"tweenEasing":0,"rotate":1.76},{"duration":4,"tweenEasing":0,"rotate":5.03},{"duration":3,"tweenEasing":0,"rotate":-6.71},{"duration":4,"tweenEasing":0,"rotate":13.13},{"duration":5,"tweenEasing":0,"rotate":1.29},{"duration":0,"rotate":2.29}],"scaleFrame":[{"duration":32,"tweenEasing":0},{"duration":5,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.03},{"duration":8,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":4,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":5,"x":1.03,"y":0.99}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":66,"value":-1}]}]},{"duration":14,"fadeInTime":0.2,"name":"Atk1","frame":[{"duration":4},{"duration":0,"sound":"200025"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.01},{"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.29,"y":0.01},{"duration":4,"tweenEasing":0,"y":-0.02},{"duration":0,"x":0.2,"y":-0.1}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-5.75},{"tweenEasing":0,"rotate":0.25},{"duration":2,"tweenEasing":0,"rotate":13.52},{"duration":2,"tweenEasing":0,"rotate":22.3},{"duration":4,"tweenEasing":0,"rotate":24.3},{"duration":0,"rotate":17.78}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":0.99},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0,"x":0.99},{"duration":0,"x":0.96}]},{"name":"chest","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":-0.21},{"tweenEasing":0,"x":-0.16,"y":0.02},{"duration":2,"tweenEasing":0,"x":-0.29,"y":0.58},{"duration":2,"tweenEasing":0,"x":-0.3,"y":0.68},{"duration":4,"tweenEasing":0,"x":-0.3,"y":0.59},{"duration":0,"x":-0.23,"y":0.36}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":5.96},{"tweenEasing":0,"rotate":7.79},{"duration":2,"tweenEasing":0,"rotate":10.03},{"duration":2,"tweenEasing":0,"rotate":1.45},{"duration":4,"tweenEasing":0,"rotate":-0.75},{"duration":0,"rotate":1.89}],"scaleFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.98},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"shouder_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":1.25,"y":-0.19},{"duration":3,"tweenEasing":0,"x":1.89,"y":0.04},{"tweenEasing":0,"x":1.32,"y":1.4},{"duration":4,"tweenEasing":0,"x":-0.3,"y":4.43},{"duration":4,"x":-0.3,"y":4.43},{"duration":0,"x":1.2,"y":6.31}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":-129.6},{"duration":3,"tweenEasing":0,"rotate":167.8},{"tweenEasing":0,"rotate":176.6},{"duration":2,"tweenEasing":0,"rotate":-74.75},{"duration":2,"tweenEasing":0,"rotate":-56.5},{"duration":4,"tweenEasing":0,"rotate":-60.7},{"duration":0,"rotate":-54.25}]},{"name":"shouder_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.34,"y":-0.34},{"tweenEasing":0,"x":-1.39,"y":-5.16},{"duration":2,"tweenEasing":0,"x":4.2,"y":-17.25},{"duration":2,"tweenEasing":0,"x":3.45,"y":-17.67},{"duration":4,"x":3.47,"y":-17.23},{"duration":0,"x":3.77,"y":-12.36}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-48.37},{"tweenEasing":0,"rotate":1.39},{"duration":2,"tweenEasing":0,"rotate":24.27},{"duration":2,"tweenEasing":0,"rotate":24.73},{"duration":4,"tweenEasing":0,"rotate":26.04},{"duration":0,"rotate":13.44}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.99},{"tweenEasing":0,"x":0.67},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.06},{"duration":4,"tweenEasing":0,"x":1.06},{"duration":0,"x":1.04}]},{"name":"forearm_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.17,"y":0.16},{"tweenEasing":0,"x":0.24,"y":-0.05},{"duration":2,"tweenEasing":0,"x":0.64,"y":-0.15},{"duration":2,"tweenEasing":0,"x":0.59,"y":-0.05},{"duration":4,"tweenEasing":0,"x":0.59,"y":-0.04},{"duration":0,"x":0.32,"y":1.15}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":12.19},{"tweenEasing":0,"rotate":-34.07},{"duration":2,"tweenEasing":0,"rotate":5.44},{"duration":2,"tweenEasing":0,"rotate":28.28},{"duration":4,"tweenEasing":0,"rotate":24.27},{"duration":0,"rotate":1.22}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.78,"y":1.01},{"tweenEasing":0,"x":0.95,"y":1.01},{"duration":2,"tweenEasing":0,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.25,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.13,"y":1.01},{"duration":0,"x":1.15,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":0.87,"y":0.13},{"duration":3,"tweenEasing":0,"x":0.88,"y":0.13},{"tweenEasing":0,"x":1.07,"y":0.14},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.25},{"duration":2,"tweenEasing":0,"x":1.16,"y":0.19},{"duration":4,"tweenEasing":0,"x":1.08,"y":0.23},{"duration":0,"x":0.2,"y":-0.14}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":12.78},{"duration":3,"tweenEasing":0,"rotate":12.78},{"tweenEasing":0,"rotate":-15.8},{"duration":2,"tweenEasing":0,"rotate":0.41},{"duration":2,"tweenEasing":0,"rotate":-14.66},{"duration":4,"tweenEasing":0,"rotate":14.63},{"duration":0,"rotate":2.97}],"scaleFrame":[{"duration":2,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":3,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":1.02},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":0,"x":1.02}]},{"name":"hand_r","translateFrame":[{"duration":2,"tweenEasing":0,"x":0.08,"y":-0.07},{"duration":3,"tweenEasing":0,"x":0.07,"y":-0.07},{"tweenEasing":0,"x":0.19,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":2,"tweenEasing":0,"x":0.06},{"duration":4,"tweenEasing":0,"x":0.07,"y":-0.02},{"duration":0,"x":-0.55,"y":-0.14}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":6.76},{"duration":3,"tweenEasing":0,"rotate":6.75},{"tweenEasing":0,"rotate":-2.5},{"duration":2,"tweenEasing":0,"rotate":76.22},{"duration":2,"tweenEasing":0,"rotate":58.71},{"duration":4,"tweenEasing":0,"rotate":41.93},{"duration":0,"rotate":38.08}],"scaleFrame":[{"duration":2,"tweenEasing":0,"x":1.17},{"duration":3,"tweenEasing":0,"x":1.17},{"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.94},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.17},{"tweenEasing":0,"x":-0.1,"y":0.22},{"duration":2,"tweenEasing":0,"x":-2.59,"y":-0.13},{"duration":2,"tweenEasing":0,"x":-2.74,"y":-0.17},{"duration":4,"tweenEasing":0,"x":-2.7,"y":-0.17},{"duration":0,"x":-3,"y":-0.12}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-2.57},{"tweenEasing":0,"rotate":4.32},{"duration":2,"tweenEasing":0,"rotate":-19.52},{"duration":2,"tweenEasing":0,"rotate":-14.64},{"duration":4,"tweenEasing":0,"rotate":-0.79},{"duration":0,"rotate":14.44}],"scaleFrame":[{"duration":5,"tweenEasing":0,"y":0.96},{"tweenEasing":0,"y":0.96},{"duration":2,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.07,"y":1.19},{"duration":4,"tweenEasing":0,"x":1.02,"y":1.05},{"duration":0,"x":1.02,"y":1.03}]},{"name":"weapon_hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01},{"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":0,"x":0.01,"y":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":3.1},{"tweenEasing":0,"rotate":32.41},{"duration":2,"tweenEasing":0,"rotate":6.87},{"duration":2,"tweenEasing":0,"rotate":-13.06},{"duration":4,"tweenEasing":0,"rotate":-13.08},{"duration":0,"rotate":-8.52}]},{"name":"weapon_hand_r","translateFrame":[{"duration":2,"tweenEasing":0},{"duration":3,"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":2,"tweenEasing":0,"rotate":-96.78},{"duration":3,"tweenEasing":0,"rotate":-156.22},{"tweenEasing":0,"clockwise":1,"rotate":-179.75},{"duration":2,"tweenEasing":0,"rotate":38.81},{"duration":2,"tweenEasing":0,"rotate":39.31},{"duration":4,"tweenEasing":0,"rotate":29.29},{"duration":0,"rotate":15.52}]},{"name":"effect_r","translateFrame":[{"duration":12},{"tweenEasing":0,"x":23.95,"y":-15.22},{"x":40.96,"y":-23.57}],"rotateFrame":[{"duration":12},{"tweenEasing":0,"rotate":-9.42},{"rotate":-15.64}],"scaleFrame":[{"duration":11},{"tweenEasing":0,"x":1.21,"y":1.22},{"tweenEasing":0},{"x":0.7,"y":0.7}]},{"name":"root","translateFrame":[{"duration":5,"tweenEasing":0,"x":3.76,"y":-0.07},{"tweenEasing":0,"x":1.45,"y":3.01},{"duration":4,"tweenEasing":0,"x":0.54,"y":4.31},{"duration":4,"tweenEasing":0,"x":1,"y":4.59},{"duration":0,"x":0.67,"y":3.07}]},{"name":"thigh_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.14,"y":0.38},{"tweenEasing":0,"x":1.11,"y":-3.46},{"duration":2,"tweenEasing":0,"x":2.01,"y":-7.84},{"duration":2,"tweenEasing":0,"x":2.72,"y":-8.01},{"duration":4,"tweenEasing":0,"x":2.67,"y":-7.55},{"duration":0,"x":1.77,"y":-5.04}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":4.5},{"tweenEasing":0,"rotate":-0.5},{"duration":2,"tweenEasing":0,"rotate":27.82},{"duration":2,"tweenEasing":0,"rotate":29.32},{"duration":4,"tweenEasing":0,"rotate":26.56},{"duration":0,"rotate":17.58}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.98}]},{"name":"thigh_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.14,"y":-0.41},{"tweenEasing":0,"x":-1.09,"y":3.38},{"duration":2,"tweenEasing":0,"x":-1.98,"y":7.68},{"duration":2,"tweenEasing":0,"x":-2.11,"y":7.9},{"duration":4,"tweenEasing":0,"x":-2.64,"y":7.4},{"duration":0,"x":-1.77,"y":4.93}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":15.06},{"tweenEasing":0,"rotate":-33.12},{"duration":2,"tweenEasing":0,"rotate":-10.04},{"duration":2,"tweenEasing":0,"rotate":-10.04},{"duration":4,"tweenEasing":0,"rotate":-7.03},{"duration":0,"rotate":-4.75}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.96,"y":1.01},{"tweenEasing":0,"x":1.01,"y":1.01},{"duration":8,"x":0.98,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":-0.01},{"tweenEasing":0,"x":0.01,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":4,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":0,"x":0.07,"y":-1.21}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":10.3},{"tweenEasing":0,"rotate":39.9},{"duration":2,"tweenEasing":0,"rotate":19.86},{"duration":2,"tweenEasing":0,"rotate":22.62},{"duration":4,"tweenEasing":0,"rotate":26.38},{"duration":0,"rotate":25.1}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":0.99,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":4,"tweenEasing":0,"x":1.05,"y":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03,"y":0.01},{"tweenEasing":0,"x":-0.04,"y":-0.04},{"duration":2,"tweenEasing":0,"x":-0.03},{"duration":2,"tweenEasing":0,"x":-0.03},{"duration":4,"tweenEasing":0,"x":-0.03,"y":-0.01},{"duration":0,"x":-0.03}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":5.94},{"tweenEasing":0,"rotate":32.87},{"duration":2,"tweenEasing":0,"rotate":-32.11},{"duration":2,"tweenEasing":0,"rotate":-32.11},{"duration":4,"tweenEasing":0,"rotate":-32.1},{"duration":0,"rotate":-21.33}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.96},{"tweenEasing":0,"x":0.93},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":4,"tweenEasing":0,"x":1.21},{"duration":0,"x":1.14}]},{"name":"foot_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.19,"y":-0.02},{"tweenEasing":0,"x":-0.2,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.22,"y":-0.03},{"duration":2,"tweenEasing":0,"x":-0.22,"y":0.01},{"duration":4,"tweenEasing":0,"x":-0.22},{"duration":0,"x":-0.27,"y":0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-4.04},{"tweenEasing":0,"rotate":-35.15},{"duration":2,"tweenEasing":0,"rotate":-47.69},{"duration":2,"tweenEasing":0,"rotate":-52.7},{"duration":4,"tweenEasing":0,"rotate":-54.2},{"duration":0,"rotate":-43.45}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01},{"tweenEasing":0,"x":1.01},{"duration":8}]},{"name":"foot_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.07,"y":0.02},{"tweenEasing":0,"x":1.55,"y":-0.04},{"duration":2,"tweenEasing":0,"x":1.47,"y":-0.06},{"duration":2,"tweenEasing":0,"x":1.48,"y":-0.05},{"duration":4,"tweenEasing":0,"x":-0.08,"y":-0.06},{"duration":0,"x":-0.42,"y":-0.31}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-21.05},{"tweenEasing":0,"rotate":0.19},{"duration":2,"tweenEasing":0,"rotate":42.16},{"duration":2,"tweenEasing":0,"rotate":42.15},{"duration":4,"tweenEasing":0,"rotate":39.26},{"duration":0,"rotate":26.17}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":6,"value":-1},{"duration":8}],"colorFrame":[{"duration":6},{"duration":5},{"value":{"aM":62}},{"value":{"aM":23}},{"value":{"aM":6}}]}]},{"duration":48,"fadeInTime":0.2,"name":"Atk3","frame":[{"duration":33},{"sound":"200029"},{"duration":0,"events":[{"name":"onTimeStart"}]}],"bone":[{"name":"pelvis","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"duration":35,"tweenEasing":0,"y":-0.01},{"duration":4,"tweenEasing":0,"y":-0.01},{"duration":3,"tweenEasing":0,"x":1.36,"y":-0.14},{"duration":3,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":23.05},{"duration":31,"tweenEasing":0,"rotate":7.25},{"duration":2,"tweenEasing":0,"rotate":-22.53},{"duration":2,"tweenEasing":0,"rotate":23.8},{"duration":4,"tweenEasing":0,"rotate":49.66},{"duration":3,"tweenEasing":0,"rotate":39.11},{"duration":3,"tweenEasing":0,"rotate":24.81},{"duration":0,"rotate":12.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":31,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":0,"x":0.99}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.15,"y":0.08},{"duration":31,"tweenEasing":0,"x":-0.04,"y":0.16},{"duration":2,"tweenEasing":0,"x":-0.24,"y":1.07},{"duration":2,"tweenEasing":0,"x":-0.28,"y":-0.38},{"duration":4,"tweenEasing":0,"x":-0.8,"y":-1.94},{"duration":3,"tweenEasing":0,"x":-0.88,"y":-2.45},{"duration":3,"tweenEasing":0,"x":-0.55,"y":-2.06},{"duration":0,"x":-0.14,"y":-1.07}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.69},{"duration":31,"tweenEasing":0,"rotate":-3.4},{"duration":2,"tweenEasing":0,"rotate":1.59},{"duration":2,"tweenEasing":0,"rotate":47.72},{"duration":4,"tweenEasing":0,"rotate":23.57},{"duration":3,"tweenEasing":0,"rotate":30.93},{"duration":3,"tweenEasing":0,"rotate":22.58},{"duration":0,"rotate":11.3}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":31,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":4,"tweenEasing":0,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":0,"x":0.99}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-2.16,"y":6.54},{"duration":2,"tweenEasing":0,"x":-0.78,"y":6.22},{"duration":29,"tweenEasing":0,"x":-1.47,"y":6.73},{"duration":2,"tweenEasing":0,"x":-0.62,"y":7.1},{"duration":2,"tweenEasing":0,"x":-3.24,"y":11.37},{"duration":4,"tweenEasing":0,"x":-3.25,"y":11.5},{"duration":3,"tweenEasing":0,"x":-3.43,"y":10.87},{"duration":3,"tweenEasing":0,"x":-1.26,"y":7.59},{"duration":0,"x":-0.88,"y":6.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-32.21},{"duration":2,"tweenEasing":0,"rotate":-26.21},{"duration":29,"tweenEasing":0,"rotate":-56.66},{"duration":2,"tweenEasing":0,"rotate":-179.92},{"duration":2,"tweenEasing":0,"rotate":-100.73},{"duration":4,"tweenEasing":0,"rotate":-102.06},{"duration":3,"tweenEasing":0,"rotate":-113.23},{"duration":3,"tweenEasing":0,"rotate":-70.65},{"duration":0,"rotate":-31.81}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":4.9,"y":-9.52},{"duration":2,"tweenEasing":0,"x":2.89,"y":-7.56},{"duration":29,"tweenEasing":0,"x":2.64,"y":-7.28},{"duration":2,"tweenEasing":0,"x":1.37,"y":-7.87},{"duration":2,"tweenEasing":0,"x":4.56,"y":-11.44},{"duration":4,"tweenEasing":0,"x":3.7,"y":-11.38},{"duration":3,"tweenEasing":0,"x":4.77,"y":-11.2},{"duration":3,"tweenEasing":0,"x":4.44,"y":-9.48},{"duration":0,"x":2.47,"y":-6.28}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-2.11},{"duration":2,"tweenEasing":0,"rotate":-7.16},{"duration":29,"tweenEasing":0,"rotate":-40.37},{"duration":2,"tweenEasing":0,"rotate":-126.51},{"duration":2,"tweenEasing":0,"rotate":-54.13},{"duration":4,"tweenEasing":0,"rotate":-56.46},{"duration":3,"tweenEasing":0,"rotate":-59.88},{"duration":3,"tweenEasing":0,"rotate":-43.84},{"duration":0,"rotate":-21.78}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":29,"tweenEasing":0,"x":0.97,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":4,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":3,"tweenEasing":0,"x":0.98},{"duration":3,"tweenEasing":0,"x":0.96},{"duration":0,"x":0.99}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.76,"y":-0.15},{"duration":2,"tweenEasing":0,"x":0.81},{"duration":29,"tweenEasing":0,"x":0.79,"y":0.1},{"duration":2,"tweenEasing":0,"x":0.95,"y":-0.19},{"duration":2,"tweenEasing":0,"x":0.75,"y":-0.02},{"duration":4,"tweenEasing":0,"x":0.71,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.71,"y":0.02},{"duration":3,"tweenEasing":0,"x":0.73,"y":-0.01},{"duration":0,"x":0.28}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-10.87},{"duration":2,"tweenEasing":0,"rotate":-22.37},{"duration":29,"tweenEasing":0,"rotate":-31.14},{"duration":2,"tweenEasing":0,"rotate":-41.66},{"duration":2,"tweenEasing":0,"rotate":-36.65},{"duration":4,"tweenEasing":0,"rotate":-42.16},{"duration":3,"tweenEasing":0,"rotate":-37.89},{"duration":3,"tweenEasing":0,"rotate":-5.03},{"duration":0,"rotate":-2.51}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.91,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":29,"tweenEasing":0,"x":1.03,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":4,"tweenEasing":0,"x":1.03},{"duration":3,"tweenEasing":0,"x":1.02},{"duration":3,"tweenEasing":0,"x":1.01},{"duration":0,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.1,"y":0.18},{"duration":2,"tweenEasing":0,"x":0.85,"y":0.22},{"duration":29,"tweenEasing":0,"x":0.25,"y":0.04},{"duration":2,"tweenEasing":0,"x":1.33,"y":0.2},{"duration":2,"tweenEasing":0,"x":1.22,"y":0.18},{"duration":4,"tweenEasing":0,"x":1.17,"y":0.18},{"duration":3,"tweenEasing":0,"x":1.21,"y":0.16},{"duration":3,"tweenEasing":0,"x":1.24,"y":0.21},{"duration":0,"x":1.03,"y":0.18}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-5.79},{"duration":2,"tweenEasing":0,"rotate":-33.15},{"duration":29,"tweenEasing":0,"rotate":-45.42},{"duration":2,"tweenEasing":0,"rotate":12.03},{"duration":2,"tweenEasing":0,"rotate":-11.34},{"duration":4,"tweenEasing":0,"rotate":-0.79},{"duration":3,"tweenEasing":0,"rotate":6.95},{"duration":3,"tweenEasing":0,"rotate":-7.3},{"duration":0,"rotate":-9.52}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":0.93,"y":0.99},{"duration":29,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.03},{"duration":2,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":7,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":0,"x":1.02,"y":0.99}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.1,"y":-0.05},{"duration":2,"tweenEasing":0,"x":0.16,"y":-0.24},{"duration":29,"tweenEasing":0,"x":0.37,"y":-0.22},{"duration":2,"tweenEasing":0,"x":0.15,"y":-0.06},{"duration":2,"tweenEasing":0,"x":0.2,"y":-0.07},{"duration":4,"tweenEasing":0,"x":0.17,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.16,"y":-0.05},{"duration":3,"tweenEasing":0,"x":0.15,"y":-0.02},{"duration":0,"x":0.09,"y":-0.05}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":12.01},{"duration":2,"tweenEasing":0,"rotate":18.07},{"duration":29,"tweenEasing":0,"rotate":18.27},{"duration":2,"tweenEasing":0,"rotate":-6.26},{"duration":2,"tweenEasing":0,"rotate":48.15},{"duration":4,"tweenEasing":0,"rotate":37.86},{"duration":3,"tweenEasing":0,"rotate":44.89},{"duration":3,"tweenEasing":0,"rotate":46.12},{"duration":0,"rotate":34.82}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99},{"duration":2,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":29,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":1.03,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":4,"tweenEasing":0,"x":0.97},{"duration":6,"x":0.98}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.07,"y":0.11},{"duration":2,"tweenEasing":0,"x":-0.01,"y":0.19},{"duration":29,"tweenEasing":0,"x":-0.01,"y":0.07},{"duration":2,"tweenEasing":0,"x":0.34,"y":0.28},{"duration":2,"tweenEasing":0,"x":-0.03,"y":0.14},{"duration":4,"tweenEasing":0,"x":-0.04,"y":0.12},{"duration":3,"tweenEasing":0,"x":-0.04,"y":0.13},{"duration":3,"tweenEasing":0,"x":-0.02,"y":0.11},{"duration":0,"y":0.06}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":11.13},{"duration":2,"tweenEasing":0,"rotate":14.81},{"duration":29,"tweenEasing":0,"rotate":13.5},{"duration":2,"tweenEasing":0,"rotate":-0.66},{"duration":2,"tweenEasing":0,"rotate":51.14},{"duration":4,"tweenEasing":0,"rotate":57.16},{"duration":3,"tweenEasing":0,"rotate":59.68},{"duration":3,"tweenEasing":0,"rotate":39.57},{"duration":0,"rotate":19.81}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98,"y":0.93},{"duration":2,"tweenEasing":0,"y":1.01},{"duration":29,"tweenEasing":0,"x":1.01,"y":1.02},{"duration":2,"tweenEasing":0,"x":1.11,"y":1.34},{"duration":6,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":3,"tweenEasing":0,"y":0.98},{"duration":0,"x":1.01,"y":0.99}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":29,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":4,"tweenEasing":0},{"duration":3,"tweenEasing":0},{"duration":3,"tweenEasing":0,"x":0.01},{"duration":0,"x":0.01,"y":0.02}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":21.59},{"duration":2,"tweenEasing":0,"rotate":19.03},{"duration":29,"tweenEasing":0,"rotate":16.97},{"duration":2,"tweenEasing":0,"rotate":13.9},{"duration":6,"tweenEasing":0,"rotate":18.48},{"duration":3,"tweenEasing":0,"rotate":18.48},{"duration":3,"tweenEasing":0,"rotate":17.86},{"duration":0,"rotate":9.1}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":-0.01},{"duration":29,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":2,"tweenEasing":0},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.01},{"duration":0,"y":0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":31.29},{"duration":2,"tweenEasing":0,"rotate":-28.61},{"duration":29,"tweenEasing":0,"rotate":-69.47},{"duration":2,"tweenEasing":0,"rotate":176.49},{"duration":2,"tweenEasing":0,"rotate":21.15},{"duration":4,"tweenEasing":0,"rotate":22.28},{"duration":3,"tweenEasing":0,"rotate":22.28},{"duration":3,"tweenEasing":0,"rotate":28.28},{"duration":0,"rotate":32.29}]},{"name":"effect_r","translateFrame":[{"duration":5,"x":-26.3,"y":-41.21},{"duration":28,"tweenEasing":0,"x":-26.3,"y":-41.21},{"duration":3,"x":-26.78,"y":-51.93},{"duration":4,"tweenEasing":0,"x":-1.03,"y":1.03},{"duration":3,"x":-1.03,"y":1.03},{"tweenEasing":0,"x":10.17,"y":6.63},{"duration":4,"x":30.97,"y":5.03}],"rotateFrame":[{"duration":33,"rotate":35.08},{"duration":3,"rotate":35.08},{"duration":12,"rotate":7.52}],"scaleFrame":[{"duration":33,"x":0.18,"y":0.16},{"duration":3,"x":0.18,"y":0.16},{"duration":4,"tweenEasing":0,"x":1.21,"y":1.09},{"duration":2,"x":1.68,"y":1.51},{"tweenEasing":0,"x":1.87,"y":1.68},{"tweenEasing":0,"x":1.63,"y":1.47},{"duration":4,"x":0.93,"y":0.84}]},{"name":"root","translateFrame":[{"duration":3,"tweenEasing":0,"x":-3.02,"y":5.91},{"duration":31,"tweenEasing":0,"x":6.06,"y":-12.9},{"duration":2,"tweenEasing":0,"x":7.94,"y":-22.23},{"duration":2,"tweenEasing":0,"x":2.9,"y":6.9},{"duration":7,"tweenEasing":0,"x":2.76,"y":6.68},{"duration":3,"tweenEasing":0,"x":2.3,"y":6.53},{"duration":0,"x":1.15,"y":3.27}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.76,"y":-2.17},{"duration":31,"tweenEasing":0,"x":-0.6,"y":-2.49},{"duration":2,"tweenEasing":0,"x":0.34,"y":-3.43},{"duration":2,"tweenEasing":0,"x":1.02,"y":-3.12},{"duration":4,"tweenEasing":0,"x":1.01,"y":-3.39},{"duration":3,"tweenEasing":0,"x":2.54,"y":-3.36},{"duration":3,"tweenEasing":0,"x":0.96,"y":-3.47},{"duration":0,"x":-0.89,"y":-1.82}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-63.19},{"duration":31,"tweenEasing":0,"rotate":-33.31},{"duration":2,"tweenEasing":0,"rotate":-11.76},{"duration":2,"tweenEasing":0,"rotate":-0.5},{"duration":4,"tweenEasing":0,"rotate":1},{"duration":3,"tweenEasing":0,"rotate":-1.59},{"duration":3,"tweenEasing":0,"rotate":5.01},{"duration":0,"rotate":5.51}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":31,"tweenEasing":0,"x":0.98,"y":0.99},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":0.9},{"duration":4,"tweenEasing":0,"x":0.91},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":3,"tweenEasing":0,"x":0.84},{"duration":0,"x":0.92}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.74,"y":2.15},{"duration":2,"tweenEasing":0,"x":0.6,"y":2.43},{"duration":29,"tweenEasing":0,"x":-1.05,"y":1.09},{"duration":2,"tweenEasing":0,"x":-0.33,"y":3.36},{"duration":2,"tweenEasing":0,"x":-1,"y":3.07},{"duration":4,"tweenEasing":0,"x":-0.98,"y":3.3},{"duration":3,"tweenEasing":0,"x":0.2,"y":3.03},{"duration":3,"tweenEasing":0,"x":-0.93,"y":3.4},{"duration":0,"x":-0.48,"y":1.71}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-43.89},{"duration":2,"tweenEasing":0,"rotate":37.86},{"duration":29,"tweenEasing":0,"rotate":-63.16},{"duration":2,"tweenEasing":0,"rotate":-39.39},{"duration":2,"tweenEasing":0,"rotate":-61.15},{"duration":4,"tweenEasing":0,"rotate":-63.15},{"duration":3,"tweenEasing":0,"rotate":-78.7},{"duration":3,"tweenEasing":0,"rotate":-66.92},{"duration":0,"rotate":-33.58}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":29,"tweenEasing":0,"y":1.01},{"duration":2,"tweenEasing":0,"x":1.02,"y":1.01},{"duration":2,"tweenEasing":0,"x":0.9,"y":1.01},{"duration":4,"tweenEasing":0,"x":0.94,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.97},{"duration":3,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.04},{"duration":31,"tweenEasing":0,"x":0.04,"y":-0.11},{"duration":2,"tweenEasing":0,"x":0.14,"y":-0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.02},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":3,"tweenEasing":0,"x":0.02,"y":-0.03},{"duration":0,"x":0.01,"y":-0.01}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":97.06},{"duration":31,"tweenEasing":0,"rotate":81.5},{"duration":2,"tweenEasing":0,"rotate":11.26},{"duration":2,"tweenEasing":0,"rotate":58.17},{"duration":4,"tweenEasing":0,"rotate":56.18},{"duration":3,"tweenEasing":0,"rotate":65.16},{"duration":3,"tweenEasing":0,"rotate":48.14},{"duration":0,"rotate":13.54}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":31,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.99},{"duration":4,"tweenEasing":0,"x":0.99},{"duration":3,"tweenEasing":0,"x":0.97,"y":1.01},{"duration":3,"tweenEasing":0,"x":0.93},{"duration":0,"x":0.95,"y":0.99}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.03,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.07,"y":-0.02},{"duration":29,"tweenEasing":0,"x":0.06,"y":-0.1},{"duration":2,"tweenEasing":0,"x":0.04,"y":-0.02},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.1},{"duration":4,"tweenEasing":0,"x":0.01,"y":-0.08},{"duration":3,"tweenEasing":0,"x":0.01,"y":-0.08},{"duration":3,"tweenEasing":0,"y":-0.06},{"duration":0,"x":-0.95}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":17.05},{"duration":2,"tweenEasing":0,"rotate":-17.87},{"duration":29,"tweenEasing":0,"rotate":103.48},{"duration":2,"tweenEasing":0,"rotate":56.4},{"duration":2,"tweenEasing":0,"rotate":68.88},{"duration":4,"tweenEasing":0,"rotate":69.4},{"duration":3,"tweenEasing":0,"rotate":82.2},{"duration":3,"tweenEasing":0,"rotate":71.17},{"duration":0,"rotate":35.8}],"scaleFrame":[{"duration":3,"tweenEasing":0,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":29,"tweenEasing":0,"x":0.94,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96},{"duration":2,"tweenEasing":0,"x":0.77},{"duration":4,"tweenEasing":0,"x":0.81},{"duration":3,"tweenEasing":0,"x":0.85},{"duration":3,"tweenEasing":0,"x":1.04},{"duration":0,"x":0.94}]},{"name":"foot_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.02,"y":-0.02},{"duration":31,"tweenEasing":0,"x":-0.06,"y":-0.06},{"duration":2,"tweenEasing":0,"x":-0.02,"y":0.03},{"duration":2,"tweenEasing":0,"x":-0.2},{"duration":4,"tweenEasing":0,"x":-0.2,"y":-0.03},{"duration":3,"tweenEasing":0,"x":-0.19},{"duration":3,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":0,"x":0.03,"y":-0.04}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-33.88},{"duration":31,"tweenEasing":0,"rotate":13},{"duration":2,"tweenEasing":0,"rotate":43.62},{"duration":2,"tweenEasing":0,"rotate":-56.95},{"duration":4,"tweenEasing":0,"rotate":-56.21},{"duration":3,"tweenEasing":0,"rotate":-62.46},{"duration":3,"tweenEasing":0,"rotate":-51.69},{"duration":0,"rotate":-17.16}],"scaleFrame":[{"duration":3,"tweenEasing":0},{"duration":31,"tweenEasing":0,"x":1.01,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.96,"y":0.99},{"duration":12}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":0.02},{"duration":2,"tweenEasing":0,"x":1.61,"y":-0.08},{"duration":29,"tweenEasing":0,"x":1.84,"y":-0.11},{"duration":2,"tweenEasing":0,"x":1.76,"y":-0.03},{"duration":2,"tweenEasing":0,"x":1.61,"y":-0.01},{"duration":4,"tweenEasing":0,"x":1.6,"y":-0.01},{"duration":3,"tweenEasing":0,"x":1.58,"y":-0.01},{"duration":3,"tweenEasing":0,"y":-0.02},{"duration":0,"x":0.72,"y":-0.03}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":26.83},{"duration":2,"tweenEasing":0,"rotate":8.27},{"duration":29,"tweenEasing":0,"rotate":-20.08},{"duration":2,"tweenEasing":0,"rotate":4.75},{"duration":2,"tweenEasing":0,"rotate":-7.97},{"duration":4,"tweenEasing":0,"rotate":-6.42},{"duration":3,"tweenEasing":0,"rotate":-3.63},{"duration":3,"tweenEasing":0,"rotate":-4.23},{"duration":0,"rotate":-2.27}],"scaleFrame":[{"duration":3,"tweenEasing":0},{"duration":2,"tweenEasing":0,"y":0.99},{"duration":29,"tweenEasing":0,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.99,"y":0.99},{"duration":12}]}],"slot":[{"name":"effect_r","colorFrame":[{"duration":34,"value":{"aM":0}},{"duration":2,"value":{"aM":0}},{"duration":5},{},{"value":{"aM":44}},{"duration":2,"value":{"aM":10}},{"duration":3,"value":{"aM":6}}]}]},{"duration":14,"fadeInTime":0.2,"name":"Atk2","frame":[{"duration":5},{"duration":0,"sound":"200026"}],"bone":[{"name":"pelvis","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.02},{"tweenEasing":0,"x":0.01,"y":-0.02},{"tweenEasing":0,"x":0.03,"y":0.01},{"duration":7}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-0.25},{"tweenEasing":0,"rotate":-0.25},{"tweenEasing":0,"rotate":-1},{"duration":7,"tweenEasing":0,"rotate":-1.5},{"duration":0,"rotate":-0.25}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.98},{"tweenEasing":0,"x":0.98},{"tweenEasing":0},{"duration":7,"tweenEasing":0,"x":0.99},{"duration":0,"x":1.01}]},{"name":"chest","translateFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"y":-0.01},{"tweenEasing":0,"x":-0.11,"y":0.14},{"duration":7,"tweenEasing":0,"x":-0.13,"y":0.33},{"duration":0,"x":-0.1,"y":0.27}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":10.32},{"tweenEasing":0,"rotate":10.32},{"tweenEasing":0,"rotate":-1.49},{"duration":7,"tweenEasing":0,"rotate":-0.49},{"duration":0,"rotate":-0.3}],"scaleFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0},{"tweenEasing":0,"x":1.02},{"duration":7,"tweenEasing":0,"x":0.94},{"duration":0,"x":0.96}]},{"name":"shouder_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.94,"y":-0.76},{"tweenEasing":0,"x":0.16,"y":-0.38},{"tweenEasing":0,"x":-0.99,"y":5.26},{"duration":7,"tweenEasing":0,"x":-0.51,"y":17.06},{"duration":0,"x":-0.41,"y":16.28}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":44.91},{"tweenEasing":0,"rotate":45.66},{"tweenEasing":0,"rotate":61.1},{"duration":7,"tweenEasing":0,"rotate":-91.96},{"duration":0,"rotate":-79.76}]},{"name":"shouder_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.35,"y":-0.86},{"tweenEasing":0,"x":0.45,"y":-0.79},{"tweenEasing":0,"x":1.88,"y":-6.43},{"duration":7,"tweenEasing":0,"x":3.48,"y":-19.49},{"duration":0,"x":3.13,"y":-18.3}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-19.79},{"tweenEasing":0,"rotate":-18.04},{"tweenEasing":0,"rotate":23.73},{"duration":7,"tweenEasing":0,"rotate":44.71},{"duration":0,"rotate":42.09}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.97,"y":1.01},{"tweenEasing":0,"x":0.98},{"tweenEasing":0,"x":0.96},{"duration":7,"tweenEasing":0,"x":1.05},{"duration":0,"x":1.02}]},{"name":"forearm_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.8},{"tweenEasing":0,"x":0.77,"y":0.01},{"tweenEasing":0,"x":0.74,"y":-0.12},{"duration":7,"tweenEasing":0,"x":0.72,"y":-0.07},{"duration":0,"x":0.69,"y":-0.14}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-0.8},{"tweenEasing":0,"rotate":-8.57},{"tweenEasing":0,"rotate":-24.34},{"duration":7,"tweenEasing":0,"rotate":-18.82},{"duration":0,"rotate":-26.6}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":1.03,"y":1.01},{"tweenEasing":0,"x":0.93,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.84,"y":1.01},{"duration":0,"x":0.85,"y":1.01}]},{"name":"forearm_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.13,"y":-0.04},{"tweenEasing":0,"x":0.18,"y":-0.02},{"tweenEasing":0,"x":0.92,"y":0.12},{"duration":7,"tweenEasing":0,"x":1.21,"y":0.22},{"duration":0,"x":1.24,"y":0.19}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-22.9},{"tweenEasing":0,"rotate":-10.41},{"tweenEasing":0,"rotate":-62.21},{"duration":7,"tweenEasing":0,"rotate":3.51},{"duration":0,"rotate":2.22}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03,"y":1.01},{"duration":7,"tweenEasing":0,"x":1.02},{"duration":0,"x":1.02,"y":1.01}]},{"name":"hand_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.03},{"tweenEasing":0,"y":-0.03},{"tweenEasing":0,"x":0.1,"y":-0.02},{"duration":7,"tweenEasing":0,"x":0.19,"y":-0.08},{"duration":0,"x":0.16,"y":-0.04}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-22.03},{"tweenEasing":0,"rotate":-22.3},{"tweenEasing":0,"rotate":3.75},{"duration":7,"tweenEasing":0,"rotate":95.26},{"duration":0,"rotate":83.25}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":1.03},{"tweenEasing":0,"x":0.99},{"duration":7,"tweenEasing":0,"x":0.97},{"duration":0,"x":0.99}]},{"name":"hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.04,"y":0.04},{"tweenEasing":0,"x":0.02,"y":0.08},{"tweenEasing":0,"x":0.06,"y":0.16},{"duration":7,"tweenEasing":0,"x":0.3,"y":-0.05},{"duration":0,"x":0.26,"y":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":0.5},{"tweenEasing":0,"rotate":-2.27},{"tweenEasing":0,"rotate":-12.92},{"duration":7,"tweenEasing":0,"rotate":-20.48},{"duration":0,"rotate":-23.94}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":1.01,"y":1.02},{"tweenEasing":0,"x":1.01,"y":1.03},{"tweenEasing":0,"x":0.98,"y":0.92},{"duration":7,"tweenEasing":0,"x":0.94,"y":0.76},{"duration":0,"x":0.96,"y":0.81}]},{"name":"weapon_hand_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01},{"tweenEasing":0,"x":0.01},{"tweenEasing":0},{"duration":7,"x":0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":13.43},{"tweenEasing":0,"rotate":14.56},{"tweenEasing":0,"rotate":26.23},{"duration":7,"tweenEasing":0,"rotate":23.18},{"duration":0,"rotate":32.77}]},{"name":"weapon_hand_r","translateFrame":[{"duration":5,"tweenEasing":0},{"tweenEasing":0,"x":-0.01},{"tweenEasing":0},{"duration":7,"y":-0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":19.53},{"tweenEasing":0,"rotate":26.53},{"tweenEasing":0,"rotate":13.24},{"duration":7,"tweenEasing":0,"rotate":19.02},{"duration":0,"rotate":17.77}]},{"name":"root","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.16,"y":1.7},{"duration":2,"tweenEasing":0,"x":0.16,"y":1.7},{"duration":7,"x":-0.86,"y":3.5}]},{"name":"thigh_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.29,"y":-0.03},{"tweenEasing":0,"x":0.29,"y":-0.03},{"tweenEasing":0,"x":0.97,"y":-2.63},{"duration":7,"tweenEasing":0,"x":1.17,"y":-5.6},{"duration":0,"x":0.74,"y":-4.76}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-12.51},{"tweenEasing":0,"rotate":-12.51},{"tweenEasing":0,"rotate":-8.25},{"duration":7,"tweenEasing":0,"rotate":12.27},{"duration":0,"rotate":7.26}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.89},{"tweenEasing":0,"x":0.89},{"tweenEasing":0},{"duration":7,"x":1.02}]},{"name":"thigh_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.28},{"tweenEasing":0,"x":-0.28},{"tweenEasing":0,"x":-0.9,"y":2.62},{"duration":7,"tweenEasing":0,"x":-1.15,"y":5.52},{"duration":0,"x":-0.73,"y":4.7}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-15.06},{"tweenEasing":0,"rotate":-15.06},{"tweenEasing":0,"rotate":-26.1},{"duration":7,"tweenEasing":0,"rotate":-8.29},{"duration":0,"rotate":-31.37}],"scaleFrame":[{"duration":6,"tweenEasing":0,"x":1.01,"y":1.01},{"tweenEasing":0,"x":1.01,"y":1.01},{"duration":7,"tweenEasing":0,"x":0.95,"y":1.01},{"duration":0,"x":1.01,"y":1.01}]},{"name":"calf_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.03,"y":-0.02},{"tweenEasing":0,"x":-0.03,"y":-0.02},{"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":7,"x":0.05,"y":-0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":23.5},{"tweenEasing":0,"rotate":23.5},{"tweenEasing":0,"rotate":40.63},{"duration":7,"tweenEasing":0,"rotate":27.65},{"duration":0,"rotate":29.9}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.94,"y":1.01},{"tweenEasing":0,"x":0.94,"y":1.01},{"tweenEasing":0,"x":0.98,"y":1.01},{"duration":7,"tweenEasing":0,"x":1.04,"y":1.01},{"duration":0,"x":1.02,"y":1.01}]},{"name":"calf_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":-0.01,"y":-0.01},{"tweenEasing":0,"x":-0.01,"y":-0.01},{"tweenEasing":0,"x":-0.03,"y":-0.03},{"duration":7,"tweenEasing":0},{"duration":0,"x":-0.03,"y":-0.02}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":23.57},{"tweenEasing":0,"rotate":23.57},{"tweenEasing":0,"rotate":17.59},{"duration":7,"tweenEasing":0,"rotate":-32.13},{"duration":0,"rotate":6.8}],"scaleFrame":[{"duration":5,"tweenEasing":0,"x":0.94},{"tweenEasing":0,"x":0.94},{"tweenEasing":0,"x":0.89},{"duration":7,"tweenEasing":0,"x":0.98},{"duration":0,"x":0.94}]},{"name":"foot_r","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.01,"y":-0.07},{"tweenEasing":0,"x":0.01,"y":-0.07},{"tweenEasing":0,"x":-0.2,"y":-0.05},{"duration":7,"tweenEasing":0,"x":-0.18,"y":-0.03},{"duration":0,"x":-0.17,"y":-0.01}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-11.03},{"tweenEasing":0,"rotate":-11.03},{"tweenEasing":0,"rotate":-32.38},{"duration":7,"tweenEasing":0,"rotate":-39.91},{"duration":0,"rotate":-37.15}]},{"name":"foot_l","translateFrame":[{"duration":5,"tweenEasing":0,"x":0.03},{"tweenEasing":0,"x":0.03},{"tweenEasing":0,"x":1.55,"y":-0.03},{"duration":7,"tweenEasing":0,"x":1.47,"y":-0.05},{"duration":0,"x":1.51,"y":-0.03}],"rotateFrame":[{"duration":5,"tweenEasing":0,"rotate":-8.55},{"tweenEasing":0,"rotate":-8.55},{"tweenEasing":0,"rotate":8.43},{"duration":7,"tweenEasing":0,"rotate":40.37},{"duration":0,"rotate":24.52}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":14,"value":-1}]}]},{"duration":28,"playTimes":0,"fadeInTime":0.2,"name":"Idle2","bone":[{"name":"pelvis","translateFrame":[{"duration":3,"tweenEasing":0},{"duration":11,"tweenEasing":0,"y":-0.02},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.02},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":6},{"duration":11,"tweenEasing":0,"rotate":-8},{"duration":2,"tweenEasing":0,"rotate":-8.25},{"duration":6,"tweenEasing":0,"rotate":-5.64},{"duration":6,"tweenEasing":0,"rotate":-2.97},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.97},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"chest","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.05,"y":0.31},{"duration":11,"tweenEasing":0,"x":0.03,"y":0.32},{"duration":2,"tweenEasing":0,"x":0.03,"y":0.34},{"duration":6,"tweenEasing":0,"x":0.04,"y":0.32},{"duration":6,"tweenEasing":0,"x":-0.13,"y":0.07},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":2.34},{"duration":11,"tweenEasing":0,"rotate":7.01},{"duration":2,"tweenEasing":0,"rotate":7.26},{"duration":6,"tweenEasing":0,"rotate":5.79},{"duration":6,"tweenEasing":0,"rotate":2.25},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":1.02},{"duration":2,"tweenEasing":0,"x":1.02},{"duration":12}]},{"name":"shouder_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.43,"y":-0.55},{"duration":11,"tweenEasing":0,"x":2.28,"y":1.52},{"duration":2,"tweenEasing":0,"x":2.28,"y":1.52},{"duration":6,"tweenEasing":0,"x":1.35,"y":0.25},{"duration":6,"tweenEasing":0,"x":0.54,"y":0.14},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":24.66},{"duration":11,"tweenEasing":0,"rotate":-127.17},{"duration":2,"tweenEasing":0,"rotate":-127.17},{"duration":6,"tweenEasing":0,"rotate":-102.81},{"duration":6,"tweenEasing":0,"rotate":-44.58},{"duration":0}]},{"name":"shouder_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":1.96,"y":-0.15},{"duration":11,"tweenEasing":0,"x":-0.85,"y":-2.67},{"duration":2,"tweenEasing":0,"x":-0.85,"y":-2.67},{"duration":6,"tweenEasing":0,"x":0.08,"y":-1.12},{"duration":6,"tweenEasing":0,"x":0.17,"y":-0.65},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-24.49},{"duration":11,"tweenEasing":0,"rotate":-7.86},{"duration":2,"tweenEasing":0,"rotate":18.69},{"duration":6,"tweenEasing":0,"rotate":19.28},{"duration":6,"tweenEasing":0,"rotate":9.77},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":0.9},{"duration":2,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.87,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.91},{"duration":0}]},{"name":"forearm_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01,"y":0.06},{"duration":11,"tweenEasing":0,"x":0.01,"y":0.03},{"duration":2,"tweenEasing":0,"x":0.03,"y":-0.09},{"duration":6,"tweenEasing":0,"x":0.06,"y":-0.1},{"duration":6,"tweenEasing":0,"x":0.06,"y":-0.04},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":5.94},{"duration":11,"tweenEasing":0,"rotate":9.46},{"duration":2,"tweenEasing":0,"rotate":-12.33},{"duration":6,"tweenEasing":0,"rotate":-14.34},{"duration":6,"tweenEasing":0,"rotate":-8.3},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.98},{"duration":11,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.9},{"duration":6,"tweenEasing":0,"x":0.92},{"duration":6,"tweenEasing":0,"x":1.02},{"duration":0}]},{"name":"forearm_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.18,"y":-0.05},{"duration":11,"tweenEasing":0,"x":0.09,"y":-0.07},{"duration":2,"tweenEasing":0,"x":0.09,"y":-0.07},{"duration":6,"tweenEasing":0,"x":0.02},{"duration":6,"tweenEasing":0,"x":1.11,"y":0.2},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":16.97},{"duration":11,"tweenEasing":0,"rotate":3.95},{"duration":2,"tweenEasing":0,"rotate":3.95},{"duration":6,"tweenEasing":0,"rotate":-2.5},{"duration":6,"tweenEasing":0,"rotate":-0.84},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"y":0.99},{"duration":11,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.91,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.84,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.82,"y":0.99},{"duration":0}]},{"name":"hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.07,"y":-0.12},{"duration":11,"tweenEasing":0,"x":0.45,"y":-0.23},{"duration":2,"tweenEasing":0,"x":0.45,"y":-0.23},{"duration":6,"tweenEasing":0,"x":0.36,"y":-0.29},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.14},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":0.01},{"duration":11,"tweenEasing":0,"rotate":-3.52},{"duration":2,"tweenEasing":0,"rotate":-3.52},{"duration":6,"tweenEasing":0,"rotate":-4.04},{"duration":6,"tweenEasing":0,"rotate":-3.04},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.02,"y":0.99},{"duration":11,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":2,"tweenEasing":0,"x":0.95,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.88,"y":0.99},{"duration":6,"tweenEasing":0,"x":0.82,"y":0.99},{"duration":0}]},{"name":"hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.03,"y":-0.03},{"duration":11,"tweenEasing":0,"x":0.03,"y":0.17},{"duration":2,"tweenEasing":0,"x":0.08,"y":0.18},{"duration":6,"tweenEasing":0,"x":0.09,"y":0.19},{"duration":6,"tweenEasing":0,"x":0.04,"y":0.11},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":0.01},{"duration":11,"tweenEasing":0,"rotate":-0.23},{"duration":2,"tweenEasing":0,"rotate":9.23},{"duration":6,"tweenEasing":0,"rotate":8.42},{"duration":6,"tweenEasing":0,"rotate":3.5},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.99,"y":0.98},{"duration":11,"tweenEasing":0,"x":0.99,"y":0.98},{"duration":2,"tweenEasing":0,"x":0.97,"y":0.89},{"duration":6,"tweenEasing":0,"x":0.98,"y":0.91},{"duration":6}]},{"name":"weapon_hand_l","translateFrame":[{"duration":3,"tweenEasing":0,"y":0.01},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-11.56},{"duration":11,"tweenEasing":0,"rotate":35.02},{"duration":2,"tweenEasing":0,"rotate":34.46},{"duration":6,"tweenEasing":0,"rotate":35.98},{"duration":6,"tweenEasing":0,"rotate":26.72},{"duration":0}]},{"name":"weapon_hand_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.01},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.31,"y":-0.48},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.48},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":1.31,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.47},{"tweenEasing":0,"x":1.33,"y":-0.46},{"tweenEasing":0,"x":1.32,"y":-0.46},{"tweenEasing":0,"x":3.92,"y":-3.23},{"duration":6,"tweenEasing":0,"x":0.01,"y":-0.01},{"duration":6,"tweenEasing":0,"x":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":72.69},{"tweenEasing":0,"rotate":-95.52},{"tweenEasing":0,"rotate":-151.72},{"tweenEasing":0,"rotate":124.8},{"tweenEasing":0,"rotate":63.15},{"tweenEasing":0,"rotate":5.26},{"tweenEasing":0,"rotate":-57.46},{"tweenEasing":0,"rotate":-116.85},{"tweenEasing":0,"rotate":-174.24},{"tweenEasing":0,"rotate":123.54},{"tweenEasing":0,"rotate":64.15},{"tweenEasing":0,"rotate":6.51},{"tweenEasing":0,"rotate":-55.46},{"tweenEasing":0,"rotate":-104.3},{"duration":6,"tweenEasing":0,"rotate":-96.77},{"duration":6,"tweenEasing":0,"rotate":-55.71},{"duration":0}]},{"name":"root","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.78,"y":2.3},{"duration":11,"tweenEasing":0,"x":1.32,"y":0.3},{"duration":2,"tweenEasing":0,"x":1.32,"y":0.3},{"duration":6,"tweenEasing":0,"x":0.33,"y":1.37},{"duration":6,"tweenEasing":0,"x":0.17,"y":0.69},{"duration":0}]},{"name":"thigh_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.09,"y":-0.24},{"duration":11,"tweenEasing":0,"x":0.76,"y":-0.66},{"duration":2,"tweenEasing":0,"x":0.78,"y":-0.66},{"duration":6,"tweenEasing":0,"x":0.72,"y":-0.54},{"duration":6,"tweenEasing":0,"x":0.56,"y":-0.15},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-22.27},{"duration":11,"tweenEasing":0,"rotate":3},{"duration":2,"tweenEasing":0,"rotate":2.75},{"duration":6,"tweenEasing":0,"rotate":-11.76},{"duration":6,"tweenEasing":0,"rotate":-8.5},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.84,"y":0.99},{"duration":11,"tweenEasing":0,"x":1.01},{"duration":2,"tweenEasing":0,"x":1.01},{"duration":6,"tweenEasing":0,"x":0.93},{"duration":6,"tweenEasing":0,"x":0.95},{"duration":0}]},{"name":"thigh_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.09,"y":0.23},{"duration":11,"tweenEasing":0,"x":-0.74,"y":0.62},{"duration":2,"tweenEasing":0,"x":-0.77,"y":0.62},{"duration":6,"tweenEasing":0,"x":-0.72,"y":0.49},{"duration":6,"tweenEasing":0,"x":-0.24,"y":0.33},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-19.58},{"duration":11,"tweenEasing":0,"rotate":3.01},{"duration":2,"tweenEasing":0,"rotate":3.51},{"duration":6,"tweenEasing":0,"rotate":-9.54},{"duration":6,"tweenEasing":0,"rotate":-6.03},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":1.01},{"duration":11,"tweenEasing":0,"x":0.98},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":6,"tweenEasing":0,"x":1.01},{"duration":6,"tweenEasing":0,"x":1.01},{"duration":0}]},{"name":"calf_r","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.04,"y":-0.04},{"duration":11,"tweenEasing":0,"x":0.03},{"duration":2,"tweenEasing":0,"x":0.03},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.01},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":33.01},{"duration":11,"tweenEasing":0,"rotate":9.04},{"duration":2,"tweenEasing":0,"rotate":9.54},{"duration":6,"tweenEasing":0,"rotate":27.29},{"duration":6,"tweenEasing":0,"rotate":17.02},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.94},{"duration":11,"tweenEasing":0,"x":0.97},{"duration":2,"tweenEasing":0,"x":0.97},{"duration":6,"tweenEasing":0,"x":0.94},{"duration":6,"tweenEasing":0,"x":0.96},{"duration":0}]},{"name":"calf_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":-0.01,"y":-0.06},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0,"x":0.01},{"duration":6,"tweenEasing":0,"x":-0.01,"y":-0.02},{"duration":6,"tweenEasing":0,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":20.59},{"duration":11,"tweenEasing":0,"rotate":-0.02},{"duration":2,"tweenEasing":0,"rotate":-0.77},{"duration":6,"tweenEasing":0,"rotate":13.3},{"duration":6,"tweenEasing":0,"rotate":8.28},{"duration":0}],"scaleFrame":[{"duration":3,"tweenEasing":0,"x":0.9},{"duration":11,"tweenEasing":0,"x":1.04},{"duration":2,"tweenEasing":0,"x":1.04},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":6,"tweenEasing":0,"x":0.99},{"duration":0}]},{"name":"foot_r","translateFrame":[{"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.02},{"duration":11,"tweenEasing":0,"y":-0.03},{"duration":2,"tweenEasing":0,"y":-0.04},{"duration":6,"tweenEasing":0,"y":-0.06},{"duration":6,"tweenEasing":0,"y":-0.02},{"duration":0}],"rotateFrame":[{"tweenEasing":0,"rotate":-10.78},{"duration":2,"tweenEasing":0,"rotate":-11.2},{"duration":11,"tweenEasing":0,"rotate":-12.04},{"duration":2,"tweenEasing":0,"rotate":-12.29},{"duration":6,"tweenEasing":0,"rotate":-15.55},{"duration":6,"tweenEasing":0,"rotate":-8.53},{"duration":0}]},{"name":"foot_l","translateFrame":[{"duration":3,"tweenEasing":0,"x":0.02,"y":0.01},{"duration":11,"tweenEasing":0},{"duration":2,"tweenEasing":0},{"duration":6,"tweenEasing":0,"x":0.02},{"duration":6,"tweenEasing":0,"x":0.02,"y":-0.02},{"duration":0}],"rotateFrame":[{"duration":3,"tweenEasing":0,"rotate":-1.08},{"duration":11,"tweenEasing":0,"rotate":-2.98},{"duration":2,"tweenEasing":0,"rotate":-2.73},{"duration":6,"tweenEasing":0,"rotate":-3.76},{"duration":6,"tweenEasing":0,"rotate":-2.26},{"duration":0}]}],"slot":[{"name":"effect_r","displayFrame":[{"duration":28,"value":-1}]}]}],"defaultActions":[{"gotoAndPlay":"Idle1"}]}]} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta index a5dff6c..ca17de9 100644 --- a/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_ske.json.meta @@ -1,6 +1,6 @@ { "ver": "1.0.0", "uuid": "affcd973-4743-48e5-9bcd-339180a6101b", - "dragonBonesJson": "{\"frameRate\":25,\"name\":\"SoldierElf\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":25,\"name\":\"SoldierElf\",\"aabb\":{\"x\":-34.53,\"y\":-104.78,\"width\":86.87,\"height\":105.25},\"bone\":[{\"name\":\"root1\",\"transform\":{\"y\":-11.0128}},{\"inheritScale\":false,\"name\":\"effect_r\",\"parent\":\"root1\",\"transform\":{\"x\":33.28,\"y\":4,\"skX\":-46.2343,\"skY\":-23.9186,\"scX\":2.1416,\"scY\":2.3753}},{\"inheritScale\":false,\"length\":3,\"name\":\"root\",\"parent\":\"root1\",\"transform\":{\"x\":-0.04,\"y\":-15.48,\"skX\":90.2632,\"skY\":90.2632}},{\"inheritScale\":false,\"length\":5,\"name\":\"thigh_l\",\"parent\":\"root\",\"transform\":{\"x\":1.6606,\"y\":-6.4628,\"skX\":-40.9714,\"skY\":-40.9714,\"scX\":0.9869,\"scY\":0.9853}},{\"inheritScale\":false,\"length\":5,\"name\":\"thigh_r\",\"parent\":\"root\",\"transform\":{\"x\":1.3414,\"y\":6.0837,\"skX\":3.567,\"skY\":3.567,\"scX\":0.9859,\"scY\":0.9981}},{\"inheritScale\":false,\"length\":3,\"name\":\"pelvis\",\"parent\":\"root\",\"transform\":{\"x\":-3.2028,\"y\":0.1015,\"skX\":-174.7594,\"skY\":-174.7594,\"scX\":0.9802,\"scY\":0.9952}},{\"inheritScale\":false,\"length\":8,\"name\":\"chest\",\"parent\":\"pelvis\",\"transform\":{\"x\":4,\"y\":-0.0016,\"skX\":-5.2066,\"skY\":-5.2246,\"scX\":0.9979,\"scY\":0.9998}},{\"inheritScale\":false,\"length\":9,\"name\":\"calf_r\",\"parent\":\"thigh_r\",\"transform\":{\"x\":5.704,\"y\":0.0016,\"skX\":16.144,\"skY\":16.1453,\"scX\":0.9955,\"scY\":0.9905}},{\"inheritScale\":false,\"length\":7,\"name\":\"calf_l\",\"parent\":\"thigh_l\",\"transform\":{\"x\":5.6592,\"y\":-0.0016,\"skX\":32.6682,\"skY\":32.6684,\"scX\":0.9945,\"scY\":0.9954}},{\"inheritScale\":false,\"length\":5,\"name\":\"shouder_l\",\"parent\":\"chest\",\"transform\":{\"x\":8.6578,\"y\":9.9632,\"skX\":-164.5031,\"skY\":-164.5031,\"scX\":0.9868,\"scY\":0.9948}},{\"inheritScale\":false,\"length\":5,\"name\":\"shouder_r\",\"parent\":\"chest\",\"transform\":{\"x\":10.4583,\"y\":-13.3897,\"skX\":-147.4808,\"skY\":-147.4808,\"scX\":0.9972,\"scY\":0.9986}},{\"inheritScale\":false,\"name\":\"foot_l\",\"parent\":\"calf_l\",\"transform\":{\"x\":15.2897,\"y\":1.2193,\"skX\":8.0381,\"skY\":8.0381,\"scX\":0.9955}},{\"inheritScale\":false,\"name\":\"foot_r\",\"parent\":\"calf_r\",\"transform\":{\"x\":14.2999,\"y\":-2.3357,\"skX\":-19.9771,\"skY\":-19.9771,\"scX\":0.9955}},{\"inheritScale\":false,\"length\":12,\"name\":\"forearm_r\",\"parent\":\"shouder_r\",\"transform\":{\"x\":6.0016,\"y\":0.0016,\"skX\":-38.0045,\"skY\":-38.0045,\"scX\":0.9973,\"scY\":0.994}},{\"inheritScale\":false,\"length\":7,\"name\":\"forearm_l\",\"parent\":\"shouder_l\",\"transform\":{\"x\":6.0144,\"y\":-0.0016,\"skX\":-42.3089,\"skY\":-42.3089,\"scX\":0.9979,\"scY\":0.987}},{\"inheritScale\":false,\"name\":\"hand_r\",\"parent\":\"forearm_r\",\"transform\":{\"x\":13.7919,\"y\":0.7114,\"skX\":3.3187,\"skY\":3.3187,\"scX\":1.0446,\"scY\":0.9963}},{\"inheritScale\":false,\"name\":\"hand_l\",\"parent\":\"forearm_l\",\"transform\":{\"x\":7.6912,\"y\":-0.0032,\"skX\":119.4238,\"skY\":119.4238,\"scX\":0.9894,\"scY\":0.9954}},{\"inheritScale\":false,\"name\":\"weapon_hand_l\",\"parent\":\"hand_l\",\"transform\":{\"x\":-8.5173,\"y\":-2.6264,\"skX\":139.1066,\"skY\":139.1066,\"scX\":0.9967,\"scY\":0.9984}},{\"inheritRotation\":false,\"inheritScale\":false,\"name\":\"weapon_hand_r\",\"parent\":\"hand_r\",\"transform\":{\"x\":1.4768,\"y\":-3.0184,\"skX\":-17.7744,\"skY\":-17.7744,\"scX\":0.9981,\"scY\":0.999}}],\"slot\":[{\"name\":\"cape\",\"parent\":\"pelvis\"},{\"name\":\"shouder_l\",\"parent\":\"shouder_l\"},{\"name\":\"forearm_l\",\"parent\":\"forearm_l\"},{\"name\":\"hand_l\",\"parent\":\"hand_l\"},{\"name\":\"weapon_hand_l\",\"parent\":\"weapon_hand_l\"},{\"name\":\"thigh_l\",\"parent\":\"thigh_l\"},{\"name\":\"calf_l\",\"parent\":\"calf_l\"},{\"name\":\"foot_l\",\"parent\":\"foot_l\"},{\"name\":\"pelvis\",\"parent\":\"pelvis\"},{\"name\":\"thigh_r\",\"parent\":\"thigh_r\"},{\"name\":\"calf_r\",\"parent\":\"calf_r\"},{\"name\":\"foot_r\",\"parent\":\"foot_r\"},{\"name\":\"shouder_r\",\"parent\":\"shouder_r\"},{\"name\":\"chest\",\"parent\":\"chest\"},{\"name\":\"weapon_hand_r\",\"parent\":\"weapon_hand_r\"},{\"name\":\"forearm_r\",\"parent\":\"forearm_r\"},{\"name\":\"hand_r\",\"parent\":\"hand_r\"},{\"name\":\"effect_r\",\"parent\":\"effect_r\"}],\"skin\":[{\"slot\":[{\"name\":\"forearm_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/forearm_r_3\",\"transform\":{\"x\":6.7,\"y\":0.41,\"skX\":-87.21,\"skY\":-87.21},\"path\":\"forearm_r\"}]},{\"name\":\"shouder_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/shouder_l_1\",\"transform\":{\"x\":0.4,\"y\":0.06,\"skX\":-68.92,\"skY\":-68.56,\"scX\":1.0015,\"scY\":0.9985},\"path\":\"shouder_l\"}]},{\"name\":\"shouder_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/shouder_r_1\",\"transform\":{\"x\":0.46,\"y\":0.08,\"skX\":-136.05,\"skY\":-136.05},\"path\":\"shouder_r\"}]},{\"name\":\"foot_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/foot_r_0\",\"transform\":{\"x\":1.06,\"y\":-1.31,\"skX\":-85.95,\"skY\":-85.95},\"path\":\"foot_r\"}]},{\"name\":\"calf_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/calf_l_0\",\"transform\":{\"x\":7.16,\"y\":0.84,\"skX\":-91.2,\"skY\":-91.2},\"path\":\"calf_l\"}]},{\"name\":\"hand_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/hand_l_2\",\"transform\":{\"x\":-5.62,\"y\":-5.3,\"skX\":179.52,\"skY\":179.52},\"path\":\"hand_l\"}]},{\"name\":\"cape\",\"display\":[{\"name\":\"cape\",\"transform\":{\"x\":10.59,\"y\":-16.32,\"skX\":84.58,\"skY\":84.41,\"scX\":1.0049,\"scY\":1.0201}}]},{\"name\":\"thigh_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/thigh_l_0\",\"transform\":{\"x\":1.19,\"y\":0.3,\"skX\":-66.04,\"skY\":-66.04},\"path\":\"thigh_l\"}]},{\"name\":\"hand_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/hand_r_2\",\"transform\":{\"x\":3.51,\"y\":-2.17,\"skX\":-84.89,\"skY\":-84.89},\"path\":\"hand_r\"}]},{\"name\":\"effect_r\",\"display\":[{\"name\":\"we_bl_4\",\"transform\":{\"x\":11.39,\"y\":-12.38},\"path\":\"we_bl_4_f_1\"}]},{\"name\":\"weapon_hand_l\",\"display\":[{\"name\":\"weapon_hand_l\",\"transform\":{\"x\":12.59,\"y\":1.83,\"skX\":52.1,\"skY\":52.1}}]},{\"name\":\"foot_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/foot_l_0\",\"transform\":{\"x\":1.82,\"y\":-3.5,\"skX\":-90.37,\"skY\":-90.37},\"path\":\"foot_l\"}]},{\"name\":\"weapon_hand_r\",\"display\":[{\"name\":\"weapon_hand_r\",\"transform\":{\"x\":14.2,\"y\":2.01,\"skX\":51,\"skY\":51},\"path\":\"weapon_hand_l\"}]},{\"name\":\"calf_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/calf_r_0\",\"transform\":{\"x\":5.87,\"y\":0.08,\"skX\":-91.22,\"skY\":-91.22},\"path\":\"calf_r\"}]},{\"name\":\"thigh_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/thigh_r_0\",\"transform\":{\"x\":-0.65,\"y\":1.03,\"skX\":-94.6,\"skY\":-94.62,\"scX\":0.9991,\"scY\":0.99},\"path\":\"thigh_r\"}]},{\"name\":\"forearm_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/forearm_l_2\",\"transform\":{\"x\":5.09,\"y\":0.15,\"skX\":-63.39,\"skY\":-63.39},\"path\":\"forearm_l\"}]},{\"name\":\"chest\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/chest_0\",\"transform\":{\"x\":42.26,\"y\":-1.48,\"skX\":90.4,\"skY\":90.61},\"path\":\"chest\"}]},{\"name\":\"pelvis\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/pelvis_0\",\"transform\":{\"x\":9.56,\"y\":-1.5,\"skX\":83.65,\"skY\":83.65},\"path\":\"pelvis\"}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Idle1\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.31},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":0.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.48},{\"duration\":0}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.6,\"y\":-0.22},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":0}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.23,\"y\":0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":0}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.01},{\"duration\":0}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"hand_l\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.92},{\"duration\":0}]},{\"name\":\"weapon_hand_r\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-3.01},{\"duration\":0}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":0}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.45,\"y\":-0.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":7.53},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.75},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-10.55},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":1.03},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.5},{\"duration\":0}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"y\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":3.03},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":58,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Walking\",\"frame\":[{\"duration\":27},{\"duration\":31,\"sound\":\"footstep\"},{\"duration\":0,\"sound\":\"walk\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":17,\"tweenEasing\":0,\"x\":-0.47,\"y\":-0.01},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01},{\"duration\":5,\"tweenEasing\":0},{\"duration\":16,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.03},{\"duration\":0,\"x\":-0.1}],\"rotateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"rotate\":6.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.25},{\"duration\":17,\"tweenEasing\":0,\"rotate\":5},{\"duration\":8,\"tweenEasing\":0,\"rotate\":5.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":16,\"tweenEasing\":0,\"rotate\":5.75},{\"duration\":0,\"rotate\":6.05}],\"scaleFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":1.01},{\"duration\":19,\"tweenEasing\":0,\"x\":0.98},{\"duration\":8,\"tweenEasing\":0,\"x\":0.98},{\"duration\":21}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.06,\"y\":0.19},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.27},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.28},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.29},{\"duration\":7,\"tweenEasing\":0,\"x\":1.11,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.28,\"y\":0.26},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.25},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.23},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.05,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.69,\"y\":0.13},{\"duration\":0,\"x\":0.33,\"y\":0.17}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.04},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-3.46},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.94},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-3.06},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-4.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.2},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-3.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.62},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-7.66},{\"duration\":0,\"rotate\":-5.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":9,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":32}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-1.74,\"y\":8.78},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.64,\"y\":8.53},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":6.91},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.96,\"y\":6.53},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.54,\"y\":5.36},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.63,\"y\":4.56},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.91,\"y\":5.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-1.15,\"y\":5.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.33,\"y\":6.55},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.37,\"y\":6.99},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.4,\"y\":7.48},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.43,\"y\":8.33},{\"duration\":0,\"x\":-1.62,\"y\":8.69}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-17.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-8.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-2.29},{\"duration\":3,\"tweenEasing\":0,\"rotate\":2.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":5,\"tweenEasing\":0,\"rotate\":0.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.48},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-7.27},{\"duration\":0,\"rotate\":-17.54}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":2.41,\"y\":-9.55},{\"duration\":7,\"tweenEasing\":0,\"x\":2.28,\"y\":-9.45},{\"duration\":2,\"tweenEasing\":0,\"x\":1.84,\"y\":-8.13},{\"duration\":7,\"tweenEasing\":0,\"x\":1.7,\"y\":-7.82},{\"duration\":7,\"tweenEasing\":0,\"x\":1.34,\"y\":-6.83},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-6.26},{\"duration\":3,\"tweenEasing\":0,\"x\":1.76,\"y\":-6.59},{\"duration\":5,\"tweenEasing\":0,\"x\":1.99,\"y\":-6.82},{\"duration\":2,\"tweenEasing\":0,\"x\":2.13,\"y\":-7.95},{\"duration\":3,\"tweenEasing\":0,\"x\":2.15,\"y\":-8.36},{\"duration\":7,\"tweenEasing\":0,\"x\":2.16,\"y\":-8.77},{\"duration\":9,\"tweenEasing\":0,\"x\":2.12,\"y\":-9.35},{\"duration\":0,\"x\":2.28,\"y\":-9.54}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.06},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.76},{\"duration\":7,\"tweenEasing\":0,\"rotate\":4.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-0.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.5},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.98},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.98},{\"duration\":7,\"tweenEasing\":0,\"rotate\":1.52},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.27},{\"duration\":0,\"rotate\":9.53}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.85},{\"duration\":7,\"tweenEasing\":0,\"x\":0.87},{\"duration\":2,\"tweenEasing\":0,\"x\":0.91},{\"duration\":7,\"tweenEasing\":0,\"x\":0.91},{\"duration\":7,\"tweenEasing\":0,\"x\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.87},{\"duration\":8,\"tweenEasing\":0,\"x\":0.86},{\"duration\":2,\"tweenEasing\":0,\"x\":0.86},{\"duration\":10,\"tweenEasing\":0,\"x\":0.87},{\"duration\":9,\"tweenEasing\":0,\"x\":0.87},{\"duration\":0,\"x\":0.86}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.82,\"y\":-0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.8,\"y\":-0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.1},{\"duration\":7,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":0.8,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.83,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.08},{\"duration\":7,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.83,\"y\":-0.12},{\"duration\":0,\"x\":0.82,\"y\":-0.13}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.96},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.97},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.24},{\"duration\":7,\"tweenEasing\":0,\"rotate\":7.74},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.73},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.7},{\"duration\":5,\"tweenEasing\":0,\"rotate\":6.69},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.95},{\"duration\":7,\"tweenEasing\":0,\"rotate\":0.44},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.2},{\"duration\":0,\"rotate\":5.68}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.85,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.89,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.95},{\"duration\":7,\"tweenEasing\":0,\"x\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":0.95},{\"duration\":3,\"tweenEasing\":0,\"x\":0.95},{\"duration\":5,\"tweenEasing\":0,\"x\":0.94},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":7,\"tweenEasing\":0,\"x\":0.92},{\"duration\":9,\"tweenEasing\":0,\"x\":0.9},{\"duration\":0,\"x\":0.86,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.24,\"y\":0.22},{\"duration\":7,\"tweenEasing\":0,\"x\":1.24,\"y\":0.23},{\"duration\":2,\"tweenEasing\":0,\"x\":1.23,\"y\":0.21},{\"duration\":7,\"tweenEasing\":0,\"x\":1.24,\"y\":0.2},{\"duration\":7,\"tweenEasing\":0,\"x\":1.21,\"y\":0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":0.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.21,\"y\":0.2},{\"duration\":5,\"tweenEasing\":0,\"x\":1.2,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":1.18,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.17,\"y\":0.18},{\"duration\":7,\"tweenEasing\":0,\"x\":1.19,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":0.2},{\"duration\":0,\"x\":1.23,\"y\":0.22}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":5.27},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":10},{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.01},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.53},{\"duration\":0,\"rotate\":7.78}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":16,\"tweenEasing\":0,\"x\":1.03},{\"duration\":7,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":9,\"x\":1.03}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":0.12,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.05},{\"duration\":7,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11},{\"duration\":5,\"tweenEasing\":0,\"x\":0.12,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.05},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.05},{\"duration\":0,\"x\":0.14,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-4.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5.25},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.25},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-6.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-1.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0,\"rotate\":-4.75}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":9,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0,\"x\":0.98,\"y\":0.99}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.13,\"y\":0.09},{\"duration\":7,\"tweenEasing\":0,\"x\":0.09,\"y\":0.09},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.1},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.13},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":0.14},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06,\"y\":0.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":0.15},{\"duration\":7,\"tweenEasing\":0,\"x\":0.08,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":0.1,\"y\":0.14},{\"duration\":0,\"x\":0.12,\"y\":0.11}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.14},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.82},{\"duration\":7,\"tweenEasing\":0,\"rotate\":9.31},{\"duration\":7,\"tweenEasing\":0,\"rotate\":7.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.05},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.06},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.08},{\"duration\":7,\"tweenEasing\":0,\"rotate\":9.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":9.35},{\"duration\":0,\"rotate\":5.91}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.95},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99,\"y\":0.96},{\"duration\":2,\"tweenEasing\":0,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"y\":0.97},{\"duration\":23,\"tweenEasing\":0,\"x\":0.99,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99,\"y\":0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":0.97},{\"duration\":0,\"y\":0.96}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":0.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0,\"x\":0.02,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.05},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.94},{\"duration\":2,\"tweenEasing\":0,\"rotate\":17.95},{\"duration\":7,\"tweenEasing\":0,\"rotate\":18.42},{\"duration\":7,\"tweenEasing\":0,\"rotate\":20.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.94},{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.36},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.8},{\"duration\":7,\"tweenEasing\":0,\"rotate\":21.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.8},{\"duration\":0,\"rotate\":21.25}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"y\":0.01},{\"duration\":9,\"tweenEasing\":0,\"y\":0.01},{\"duration\":0,\"x\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-3.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.76},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.77},{\"duration\":7,\"tweenEasing\":0,\"rotate\":14.4},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.27},{\"duration\":3,\"tweenEasing\":0,\"rotate\":19.78},{\"duration\":5,\"tweenEasing\":0,\"rotate\":21.53},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.53},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.28},{\"duration\":7,\"tweenEasing\":0,\"rotate\":21.78},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.52},{\"duration\":0,\"rotate\":-0.5}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":-1.63,\"y\":0.96},{\"duration\":19,\"tweenEasing\":0,\"x\":-1.48,\"y\":0.02},{\"duration\":8,\"tweenEasing\":0,\"x\":-1.63,\"y\":1.03},{\"duration\":21,\"tweenEasing\":0,\"x\":-1.79,\"y\":0.99},{\"duration\":0,\"x\":-1.65,\"y\":0.95}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.64,\"y\":-2.98},{\"duration\":2,\"tweenEasing\":0,\"x\":1.2,\"y\":-3.05},{\"duration\":5,\"tweenEasing\":0,\"x\":1.43,\"y\":-3.11},{\"duration\":2,\"tweenEasing\":0,\"x\":1.14,\"y\":-3.22},{\"duration\":7,\"tweenEasing\":0,\"x\":0.73,\"y\":-3.3},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.05,\"y\":-3.55},{\"duration\":3,\"tweenEasing\":0,\"x\":0.51,\"y\":-3.77},{\"duration\":3,\"tweenEasing\":0,\"x\":1.26,\"y\":-3.91},{\"duration\":5,\"tweenEasing\":0,\"x\":1.48,\"y\":-3.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":-3.93},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.23,\"y\":-3.84},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.66,\"y\":-3.51},{\"duration\":0,\"x\":0.16,\"y\":-3.07}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-21.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.53},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-26.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-53.15},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-58.92},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-60.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-72.97},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.19},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-68.71},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-61.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-54.4},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-44.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.31},{\"duration\":0,\"rotate\":-21.52}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":0,\"x\":1.01}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.63,\"y\":2.95},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.37,\"y\":3},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":3.18},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.64,\"y\":3.24},{\"duration\":7,\"tweenEasing\":0,\"x\":-2.57,\"y\":3.46},{\"duration\":3,\"tweenEasing\":0,\"x\":-2,\"y\":3.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.22,\"y\":3.86},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.89,\"y\":3.94},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.79,\"y\":3.96},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.99,\"y\":3.91},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.38,\"y\":3.91},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.88,\"y\":3.85},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":3.53},{\"duration\":0,\"x\":-1.12,\"y\":3.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.58},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-21.34},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-5.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":7,\"tweenEasing\":0,\"rotate\":20.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.33},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.83},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-8.29},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-15.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.83},{\"duration\":0,\"rotate\":-19.05}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.02},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.02},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":0,\"x\":0.07,\"y\":-0.06}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.14},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.43},{\"duration\":5,\"tweenEasing\":0,\"rotate\":64.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":80.26},{\"duration\":7,\"tweenEasing\":0,\"rotate\":79.51},{\"duration\":7,\"tweenEasing\":0,\"rotate\":56.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":52.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":42.17},{\"duration\":5,\"tweenEasing\":0,\"rotate\":48.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.66},{\"duration\":3,\"tweenEasing\":0,\"rotate\":43.64},{\"duration\":7,\"tweenEasing\":0,\"rotate\":35.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":32.07},{\"duration\":0,\"rotate\":41.6}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":0.98}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.01},{\"duration\":0,\"x\":-0.03,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":27.35},{\"duration\":2,\"tweenEasing\":0,\"rotate\":23.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.51},{\"duration\":7,\"tweenEasing\":0,\"rotate\":10.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.49},{\"duration\":3,\"tweenEasing\":0,\"rotate\":36.56},{\"duration\":2,\"tweenEasing\":0,\"rotate\":47.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":54.38},{\"duration\":2,\"tweenEasing\":0,\"rotate\":63.92},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":62.92},{\"duration\":9,\"tweenEasing\":0,\"rotate\":43.86},{\"duration\":0,\"rotate\":24.05}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.24,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.23,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.03},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.02},{\"duration\":0,\"x\":-0.21,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.1},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-16.61},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.35},{\"duration\":2,\"tweenEasing\":0,\"rotate\":10.49},{\"duration\":7,\"tweenEasing\":0,\"rotate\":13.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.03},{\"duration\":5,\"tweenEasing\":0,\"rotate\":20.28},{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":10.78},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.52},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0,\"rotate\":-16.03}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":20,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"x\":0.98}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.53,\"y\":-0.14},{\"duration\":7,\"tweenEasing\":0,\"x\":1.52,\"y\":-0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.09},{\"duration\":7,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":1.49,\"y\":-0.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.5,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":1.52,\"y\":-0.15},{\"duration\":7,\"tweenEasing\":0,\"x\":1.55,\"y\":-0.16},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":-0.1},{\"duration\":0,\"x\":1.54,\"y\":-0.11}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.94},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-7.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-21.75},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-31.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.59},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-49.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-47.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-31.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.56},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-26.94},{\"duration\":0,\"rotate\":-13.54}],\"scaleFrame\":[{\"duration\":19,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":10,\"tweenEasing\":0,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":58,\"value\":-1}]}]},{\"duration\":66,\"fadeInTime\":0.1,\"name\":\"Dying\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.36,\"y\":-0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.16},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.64,\"y\":-0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.32},{\"duration\":0,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":17.28},{\"duration\":4,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-5.5},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-6},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.51},{\"duration\":2,\"tweenEasing\":0,\"rotate\":20.04},{\"duration\":3,\"tweenEasing\":0,\"rotate\":41.37},{\"duration\":4,\"tweenEasing\":0,\"rotate\":82.99},{\"duration\":3,\"tweenEasing\":0,\"rotate\":84},{\"duration\":9,\"tweenEasing\":0,\"rotate\":87.25},{\"duration\":0,\"rotate\":85}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.04},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":9,\"x\":1.03}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.28},{\"tweenEasing\":0,\"x\":0.05,\"y\":0.48},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.86},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.27,\"y\":0.94},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.54},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.35},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19,\"y\":0.43},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.1,\"y\":0.23},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.1,\"y\":0.26},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.53},{\"duration\":0,\"x\":-0.07,\"y\":0.25}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":44.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.74},{\"tweenEasing\":0,\"rotate\":10.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.29},{\"duration\":10,\"tweenEasing\":0,\"rotate\":4.32},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.32},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.76},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.21},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-25.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.88},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-3.38},{\"duration\":5,\"tweenEasing\":0,\"rotate\":12.65},{\"duration\":0,\"rotate\":15.67}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.93},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0},{\"duration\":5,\"x\":1.01}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.6,\"y\":7.58},{\"duration\":3,\"tweenEasing\":0,\"x\":1.4,\"y\":8.29},{\"tweenEasing\":0,\"x\":3.2,\"y\":6.9},{\"duration\":2,\"tweenEasing\":0,\"x\":1.67,\"y\":5.49},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.81,\"y\":4.98},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.99,\"y\":5.37},{\"duration\":5,\"tweenEasing\":0,\"x\":0.57,\"y\":5.79},{\"duration\":2,\"tweenEasing\":0,\"x\":0.83,\"y\":4.7},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":3.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":2.83},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.08,\"y\":4.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.24,\"y\":6.75},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.48,\"y\":14.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":13.13},{\"duration\":4,\"tweenEasing\":0,\"x\":-1.45,\"y\":13.55},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.61,\"y\":12.94},{\"duration\":0,\"x\":-0.52,\"y\":12.96}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-81.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":69.12},{\"tweenEasing\":0,\"rotate\":70.36},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.92},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-7.21},{\"duration\":10,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":2,\"tweenEasing\":0,\"rotate\":32.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":78.92},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.95},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-17.09},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.39},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-8.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-68.19},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-62.93},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-55.67},{\"duration\":0,\"rotate\":-55.92}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.86,\"y\":-11.59},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.92,\"y\":-12.92},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.4,\"y\":-12.54},{\"tweenEasing\":0,\"x\":-0.47,\"y\":-9.24},{\"duration\":2,\"tweenEasing\":0,\"x\":0.23,\"y\":-7.51},{\"duration\":10,\"tweenEasing\":0,\"x\":2.02,\"y\":-4.95},{\"duration\":10,\"tweenEasing\":0,\"x\":4.02,\"y\":-5.5},{\"duration\":5,\"tweenEasing\":0,\"x\":1.57,\"y\":-6.9},{\"duration\":2,\"tweenEasing\":0,\"x\":1.38,\"y\":-5.55},{\"duration\":3,\"tweenEasing\":0,\"x\":1.22,\"y\":-4.68},{\"duration\":3,\"tweenEasing\":0,\"x\":2,\"y\":-3.25},{\"duration\":2,\"tweenEasing\":0,\"x\":3.13,\"y\":-4.25},{\"duration\":3,\"tweenEasing\":0,\"x\":1.42,\"y\":-8.87},{\"duration\":4,\"tweenEasing\":0,\"x\":2.96,\"y\":-16.32},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25,\"y\":-14.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.16,\"y\":-14.36},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.56,\"y\":-13.82},{\"duration\":0,\"x\":-0.59,\"y\":-13.92}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-106.06},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-8.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.7},{\"tweenEasing\":0,\"rotate\":16.47},{\"duration\":2,\"tweenEasing\":0,\"rotate\":17.43},{\"duration\":10,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":5,\"tweenEasing\":0,\"rotate\":25.08},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-30.15},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.96},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-20.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.08},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-20.04},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-19.34},{\"duration\":0,\"rotate\":-19.1}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.08,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.09,\"y\":0.99},{\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.86,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":0.81,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.82},{\"duration\":4,\"tweenEasing\":0,\"x\":0.72,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.18},{\"duration\":5,\"tweenEasing\":0,\"x\":1.2},{\"duration\":0,\"x\":1.15}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-0.08,\"y\":0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.21},{\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.26},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.27},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.24},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.07,\"y\":-0.15},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.27},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":-0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.24,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.23,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.27,\"y\":-0.04},{\"duration\":0,\"x\":-0.24,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-1.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.52},{\"tweenEasing\":0,\"rotate\":-12.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-7.79},{\"duration\":10,\"tweenEasing\":0,\"rotate\":11.55},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.93},{\"duration\":2,\"tweenEasing\":0,\"rotate\":4.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.3},{\"duration\":4,\"tweenEasing\":0,\"rotate\":40.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":36.08},{\"duration\":4,\"tweenEasing\":0,\"rotate\":29.81},{\"duration\":5,\"tweenEasing\":0,\"rotate\":39.09},{\"duration\":0,\"rotate\":40.61}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.87,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.86,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.83},{\"duration\":2,\"tweenEasing\":0,\"x\":0.83},{\"duration\":10,\"tweenEasing\":0,\"x\":0.85},{\"duration\":10,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.82,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.76,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66},{\"duration\":5,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":0,\"x\":0.76,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.11,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.38,\"y\":0.34},{\"tweenEasing\":0,\"x\":-2.98,\"y\":0.44},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.55},{\"duration\":10,\"tweenEasing\":0,\"x\":0.17,\"y\":0.4},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.44},{\"duration\":5,\"tweenEasing\":0,\"x\":0.08,\"y\":0.4},{\"duration\":2,\"tweenEasing\":0,\"x\":0.6,\"y\":0.37},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.3},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.28},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":0.23},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.42,\"y\":0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.78,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.47,\"y\":-0.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-3.04},{\"duration\":0,\"x\":-2.96,\"y\":0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-10.55},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-146.71},{\"tweenEasing\":0,\"rotate\":-125.63},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-48.42},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-26.84},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-54.95},{\"duration\":5,\"tweenEasing\":0,\"rotate\":13.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.41},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.18},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-9.62},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-31.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.85},{\"duration\":4,\"tweenEasing\":0,\"rotate\":12.72},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-9.87},{\"duration\":0,\"rotate\":-12.37}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":0.99},{\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.77,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.9,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.92},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.67},{\"duration\":3,\"tweenEasing\":0,\"x\":0.87,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":4,\"tweenEasing\":0,\"x\":0.74},{\"duration\":3,\"tweenEasing\":0,\"x\":0.77},{\"duration\":4,\"tweenEasing\":0,\"x\":0.74,\"y\":0.99},{\"duration\":5,\"x\":0.72,\"y\":0.99}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":-0.2},{\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.25,\"y\":-0.08},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.07,\"y\":-0.02},{\"duration\":10,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.02,\"y\":0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.05,\"y\":0.29},{\"duration\":3,\"tweenEasing\":0,\"x\":0.13,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.17},{\"duration\":4,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.19},{\"duration\":5,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.16},{\"duration\":0,\"x\":0.23,\"y\":-0.17}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.06},{\"tweenEasing\":0,\"rotate\":152.64},{\"duration\":2,\"tweenEasing\":0,\"rotate\":130.33},{\"duration\":10,\"tweenEasing\":0,\"rotate\":134.36},{\"duration\":10,\"tweenEasing\":0,\"rotate\":144.41},{\"duration\":5,\"tweenEasing\":0,\"rotate\":90.23},{\"duration\":2,\"tweenEasing\":0,\"rotate\":79.72},{\"duration\":3,\"tweenEasing\":0,\"rotate\":71.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":59.63},{\"duration\":2,\"tweenEasing\":0,\"rotate\":110.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":121.36},{\"duration\":4,\"tweenEasing\":0,\"rotate\":146.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":155.42},{\"duration\":4,\"tweenEasing\":0,\"rotate\":148.64},{\"duration\":5,\"tweenEasing\":0,\"rotate\":148.89},{\"duration\":0,\"rotate\":149.89}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":0.99},{\"tweenEasing\":0,\"x\":0.69},{\"duration\":2,\"tweenEasing\":0},{\"duration\":27,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":12,\"x\":0.97}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.09},{\"duration\":2,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.06},{\"tweenEasing\":0,\"x\":0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":0.02},{\"duration\":10,\"tweenEasing\":0,\"x\":0.16,\"y\":0.05},{\"duration\":10,\"tweenEasing\":0,\"x\":0.09,\"y\":0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.21,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":0.11},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.02,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.04,\"y\":0.06},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.37,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.03},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.19,\"y\":0.01},{\"duration\":0,\"x\":-0.01,\"y\":0.04}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":3.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.47},{\"tweenEasing\":0,\"rotate\":59.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":63.85},{\"duration\":10,\"tweenEasing\":0,\"rotate\":64.64},{\"duration\":10,\"tweenEasing\":0,\"rotate\":35.73},{\"duration\":5,\"tweenEasing\":0,\"rotate\":26.18},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.62},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.02},{\"duration\":4,\"tweenEasing\":0,\"rotate\":51.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":4,\"tweenEasing\":0,\"rotate\":27.35},{\"duration\":5,\"tweenEasing\":0,\"rotate\":3.06},{\"duration\":0,\"rotate\":-0.06}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.91},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.91},{\"duration\":10,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":10,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96,\"y\":0.86},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":0.82},{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.76},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93,\"y\":0.75},{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.75},{\"duration\":4,\"tweenEasing\":0,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":5,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0,\"x\":1.01,\"y\":1.02}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":23,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":16,\"x\":0.01}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":4.42},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.72},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.51},{\"tweenEasing\":0,\"rotate\":9.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.71},{\"duration\":10,\"tweenEasing\":0,\"rotate\":11.52},{\"duration\":10,\"tweenEasing\":0,\"rotate\":25.31},{\"duration\":5,\"tweenEasing\":0,\"rotate\":20.24},{\"duration\":2,\"tweenEasing\":0,\"rotate\":29.56},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.39},{\"duration\":3,\"tweenEasing\":0,\"rotate\":27.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-52.41},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-81.38},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-80.53},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-79.97},{\"duration\":0,\"rotate\":-80.88}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":16,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":0,\"x\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":93.01},{\"tweenEasing\":0,\"rotate\":105.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":104.02},{\"duration\":27,\"tweenEasing\":0,\"rotate\":107.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":107.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":121.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":155.41},{\"duration\":3,\"tweenEasing\":0,\"rotate\":159.93},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-179.75},{\"duration\":12,\"rotate\":-159.98}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-9.14,\"y\":0.61},{\"duration\":4,\"tweenEasing\":0,\"x\":-16.58,\"y\":-0.55},{\"duration\":2,\"tweenEasing\":0,\"x\":-16.78,\"y\":-1.59},{\"duration\":10,\"tweenEasing\":0,\"x\":-15.62,\"y\":-0.25},{\"duration\":10,\"tweenEasing\":0,\"x\":-16.44,\"y\":0.69},{\"duration\":5,\"tweenEasing\":0,\"x\":-13.75,\"y\":-0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":-5.66,\"y\":0.3},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.27,\"y\":6.86},{\"duration\":5,\"tweenEasing\":0,\"x\":0.44,\"y\":7.93},{\"duration\":16,\"tweenEasing\":0,\"x\":3.54,\"y\":12.17},{\"duration\":0,\"x\":4.14,\"y\":13.02}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.35,\"y\":-2.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66,\"y\":-3.94},{\"tweenEasing\":0,\"x\":0.86,\"y\":-2.65},{\"duration\":2,\"tweenEasing\":0,\"x\":1.14,\"y\":-2.48},{\"duration\":10,\"tweenEasing\":0,\"x\":1.27,\"y\":-2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.19,\"y\":-2.51},{\"duration\":5,\"tweenEasing\":0,\"x\":1.51,\"y\":-3.51},{\"duration\":2,\"tweenEasing\":0,\"x\":1.57,\"y\":-3.25},{\"duration\":3,\"tweenEasing\":0,\"x\":1.55,\"y\":-2.85},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":-1.7},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.09,\"y\":-2.67},{\"duration\":3,\"tweenEasing\":0,\"x\":0.79,\"y\":-4.22},{\"duration\":4,\"tweenEasing\":0,\"x\":2.11,\"y\":-4.38},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93,\"y\":-4.52},{\"duration\":4,\"tweenEasing\":0,\"x\":1.04,\"y\":-4.38},{\"duration\":5,\"tweenEasing\":0,\"x\":1.3,\"y\":-4.05},{\"duration\":0,\"x\":1.36,\"y\":-3.69}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-44.61},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-48.38},{\"tweenEasing\":0,\"rotate\":-43.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-43.35},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-54.15},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-64.69},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-29.05},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":2},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.27},{\"duration\":3,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":4,\"tweenEasing\":0,\"rotate\":71.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":61.96},{\"duration\":4,\"tweenEasing\":0,\"rotate\":63.96},{\"duration\":5,\"tweenEasing\":0,\"rotate\":67.22},{\"duration\":0,\"rotate\":63.46}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":16,\"x\":1.02,\"y\":0.99}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":-0.35,\"y\":2.85},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.32,\"y\":4.22},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.64,\"y\":3.87},{\"tweenEasing\":0,\"x\":-1.17,\"y\":3.12},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":2.45},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.24,\"y\":1.98},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.16,\"y\":2.48},{\"duration\":5,\"tweenEasing\":0,\"x\":-1.47,\"y\":3.46},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.54,\"y\":3.21},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.52,\"y\":2.82},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":1.35},{\"duration\":2,\"tweenEasing\":0,\"x\":0.09,\"y\":2.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.91,\"y\":3.82},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.08,\"y\":4.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.18,\"y\":3.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.69,\"y\":3.67},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.67,\"y\":3.66},{\"duration\":0,\"x\":-1.32,\"y\":3.62}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-23.85},{\"duration\":5,\"tweenEasing\":0,\"rotate\":39},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.78},{\"tweenEasing\":0,\"rotate\":12.3},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.83},{\"duration\":10,\"tweenEasing\":0,\"rotate\":16.07},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":5,\"tweenEasing\":0,\"rotate\":32.36},{\"duration\":2,\"tweenEasing\":0,\"rotate\":36.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":49.37},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":87.74},{\"duration\":3,\"tweenEasing\":0,\"rotate\":100.55},{\"duration\":4,\"tweenEasing\":0,\"rotate\":114.09},{\"duration\":3,\"tweenEasing\":0,\"rotate\":118.87},{\"duration\":4,\"tweenEasing\":0,\"rotate\":120.64},{\"duration\":5,\"tweenEasing\":0,\"rotate\":117.35},{\"duration\":0,\"rotate\":116.86}],\"scaleFrame\":[{\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":0.77,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91},{\"tweenEasing\":0,\"x\":0.9},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89},{\"duration\":10,\"tweenEasing\":0,\"x\":0.87},{\"duration\":10,\"tweenEasing\":0,\"x\":0.9},{\"duration\":5,\"tweenEasing\":0,\"x\":0.86,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.81,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":4,\"tweenEasing\":0,\"x\":0.92,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.73,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.82,\"y\":1.01},{\"duration\":0,\"x\":0.79,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.02},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.04},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.04},{\"duration\":4,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.06},{\"duration\":0,\"x\":0.02,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":45.37},{\"tweenEasing\":0,\"rotate\":32.33},{\"duration\":2,\"tweenEasing\":0,\"rotate\":30.83},{\"duration\":10,\"tweenEasing\":0,\"rotate\":51.13},{\"duration\":10,\"tweenEasing\":0,\"rotate\":64.19},{\"duration\":5,\"tweenEasing\":0,\"rotate\":57.91},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":78.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":63.48},{\"duration\":2,\"tweenEasing\":0,\"rotate\":50.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":43.38},{\"duration\":4,\"tweenEasing\":0,\"rotate\":39.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.56},{\"duration\":4,\"tweenEasing\":0,\"rotate\":15.28},{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.01},{\"duration\":0,\"rotate\":16.53}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":10,\"tweenEasing\":0,\"x\":1.02},{\"duration\":10,\"tweenEasing\":0,\"x\":1.03},{\"duration\":5,\"tweenEasing\":0,\"x\":1.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.04},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05},{\"duration\":5,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":0,\"x\":1.05}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.05,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.07},{\"duration\":10,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.12},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.05,\"y\":-0.07},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.05,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.08},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.07},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.05},{\"duration\":0,\"x\":-0.05,\"y\":-0.06}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":41.36},{\"duration\":5,\"tweenEasing\":0,\"rotate\":16.91},{\"duration\":3,\"tweenEasing\":0,\"rotate\":40.79},{\"tweenEasing\":0,\"rotate\":14.94},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":5,\"tweenEasing\":0,\"rotate\":8.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.24},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.05},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":16.24},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.93},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-6.36},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.85},{\"duration\":4,\"tweenEasing\":0,\"rotate\":10.27},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":0,\"rotate\":-6.69}],\"scaleFrame\":[{\"tweenEasing\":0,\"x\":0.95},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":0.99},{\"duration\":5,\"x\":1.03}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.01},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.21,\"y\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25,\"y\":0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.03},{\"duration\":0,\"x\":-0.22,\"y\":0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.76},{\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.03},{\"duration\":10,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":10,\"tweenEasing\":0,\"rotate\":0.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-15.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":27.29},{\"duration\":3,\"tweenEasing\":0,\"rotate\":49.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":65.14},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.39},{\"duration\":4,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":53.41},{\"duration\":4,\"tweenEasing\":0,\"rotate\":38.58},{\"duration\":5,\"tweenEasing\":0,\"rotate\":35.06},{\"duration\":0,\"rotate\":35.57}],\"scaleFrame\":[{\"duration\":32,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.92},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":0,\"y\":0.99}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":1.51,\"y\":-0.15},{\"duration\":5,\"tweenEasing\":0,\"x\":1.38,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.19},{\"tweenEasing\":0,\"x\":1.43,\"y\":-0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":1.44,\"y\":-0.2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.41,\"y\":-0.2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.2},{\"duration\":5,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.43,\"y\":-0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.39,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":1.42,\"y\":-0.12},{\"duration\":4,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.11},{\"duration\":5,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.12},{\"duration\":0,\"x\":1.38,\"y\":-0.1}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-17.55},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-55.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-34.03},{\"tweenEasing\":0,\"rotate\":-27.28},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-26.79},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-40.34},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-43.84},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-40.58},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.01},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.82},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":4,\"tweenEasing\":0,\"rotate\":5.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.71},{\"duration\":4,\"tweenEasing\":0,\"rotate\":13.13},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.29},{\"duration\":0,\"rotate\":2.29}],\"scaleFrame\":[{\"duration\":32,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":5,\"x\":1.03,\"y\":0.99}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]},{\"duration\":14,\"fadeInTime\":0.2,\"name\":\"Atk1\",\"frame\":[{\"duration\":4},{\"duration\":0,\"sound\":\"200025\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.29,\"y\":0.01},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0,\"x\":0.2,\"y\":-0.1}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.75},{\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.3},{\"duration\":4,\"tweenEasing\":0,\"rotate\":24.3},{\"duration\":0,\"rotate\":17.78}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":0.99},{\"duration\":2,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":0.96}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.21},{\"tweenEasing\":0,\"x\":-0.16,\"y\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.29,\"y\":0.58},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.68},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.59},{\"duration\":0,\"x\":-0.23,\"y\":0.36}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.96},{\"tweenEasing\":0,\"rotate\":7.79},{\"duration\":2,\"tweenEasing\":0,\"rotate\":10.03},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.45},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0,\"rotate\":1.89}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.25,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.89,\"y\":0.04},{\"tweenEasing\":0,\"x\":1.32,\"y\":1.4},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.3,\"y\":4.43},{\"duration\":4,\"x\":-0.3,\"y\":4.43},{\"duration\":0,\"x\":1.2,\"y\":6.31}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":-129.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":167.8},{\"tweenEasing\":0,\"rotate\":176.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-74.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-56.5},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-60.7},{\"duration\":0,\"rotate\":-54.25}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.34},{\"tweenEasing\":0,\"x\":-1.39,\"y\":-5.16},{\"duration\":2,\"tweenEasing\":0,\"x\":4.2,\"y\":-17.25},{\"duration\":2,\"tweenEasing\":0,\"x\":3.45,\"y\":-17.67},{\"duration\":4,\"x\":3.47,\"y\":-17.23},{\"duration\":0,\"x\":3.77,\"y\":-12.36}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-48.37},{\"tweenEasing\":0,\"rotate\":1.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.73},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.04},{\"duration\":0,\"rotate\":13.44}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.99},{\"tweenEasing\":0,\"x\":0.67},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.06},{\"duration\":4,\"tweenEasing\":0,\"x\":1.06},{\"duration\":0,\"x\":1.04}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.16},{\"tweenEasing\":0,\"x\":0.24,\"y\":-0.05},{\"duration\":2,\"tweenEasing\":0,\"x\":0.64,\"y\":-0.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.59,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":0.59,\"y\":-0.04},{\"duration\":0,\"x\":0.32,\"y\":1.15}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":12.19},{\"tweenEasing\":0,\"rotate\":-34.07},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":28.28},{\"duration\":4,\"tweenEasing\":0,\"rotate\":24.27},{\"duration\":0,\"rotate\":1.22}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.78,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.25,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.13,\"y\":1.01},{\"duration\":0,\"x\":1.15,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":0.87,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":0.88,\"y\":0.13},{\"tweenEasing\":0,\"x\":1.07,\"y\":0.14},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":1.16,\"y\":0.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.08,\"y\":0.23},{\"duration\":0,\"x\":0.2,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.78},{\"tweenEasing\":0,\"rotate\":-15.8},{\"duration\":2,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.66},{\"duration\":4,\"tweenEasing\":0,\"rotate\":14.63},{\"duration\":0,\"rotate\":2.97}],\"scaleFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":0,\"x\":1.02}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.07},{\"tweenEasing\":0,\"x\":0.19,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06},{\"duration\":4,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.02},{\"duration\":0,\"x\":-0.55,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.75},{\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":76.22},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.71},{\"duration\":4,\"tweenEasing\":0,\"rotate\":41.93},{\"duration\":0,\"rotate\":38.08}],\"scaleFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.17},{\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.17},{\"tweenEasing\":0,\"x\":-0.1,\"y\":0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.59,\"y\":-0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.74,\"y\":-0.17},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.7,\"y\":-0.17},{\"duration\":0,\"x\":-3,\"y\":-0.12}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-2.57},{\"tweenEasing\":0,\"rotate\":4.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-19.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.64},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.79},{\"duration\":0,\"rotate\":14.44}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"y\":0.96},{\"tweenEasing\":0,\"y\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.07,\"y\":1.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.02,\"y\":1.05},{\"duration\":0,\"x\":1.02,\"y\":1.03}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":0,\"x\":0.01,\"y\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":3.1},{\"tweenEasing\":0,\"rotate\":32.41},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-13.06},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-13.08},{\"duration\":0,\"rotate\":-8.52}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":-96.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-156.22},{\"tweenEasing\":0,\"clockwise\":1,\"rotate\":-179.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":38.81},{\"duration\":2,\"tweenEasing\":0,\"rotate\":39.31},{\"duration\":4,\"tweenEasing\":0,\"rotate\":29.29},{\"duration\":0,\"rotate\":15.52}]},{\"name\":\"effect_r\",\"translateFrame\":[{\"duration\":12},{\"tweenEasing\":0,\"x\":23.95,\"y\":-15.22},{\"x\":40.96,\"y\":-23.57}],\"rotateFrame\":[{\"duration\":12},{\"tweenEasing\":0,\"rotate\":-9.42},{\"rotate\":-15.64}],\"scaleFrame\":[{\"duration\":11},{\"tweenEasing\":0,\"x\":1.21,\"y\":1.22},{\"tweenEasing\":0},{\"x\":0.7,\"y\":0.7}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":3.76,\"y\":-0.07},{\"tweenEasing\":0,\"x\":1.45,\"y\":3.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.54,\"y\":4.31},{\"duration\":4,\"tweenEasing\":0,\"x\":1,\"y\":4.59},{\"duration\":0,\"x\":0.67,\"y\":3.07}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.14,\"y\":0.38},{\"tweenEasing\":0,\"x\":1.11,\"y\":-3.46},{\"duration\":2,\"tweenEasing\":0,\"x\":2.01,\"y\":-7.84},{\"duration\":2,\"tweenEasing\":0,\"x\":2.72,\"y\":-8.01},{\"duration\":4,\"tweenEasing\":0,\"x\":2.67,\"y\":-7.55},{\"duration\":0,\"x\":1.77,\"y\":-5.04}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":4.5},{\"tweenEasing\":0,\"rotate\":-0.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.82},{\"duration\":2,\"tweenEasing\":0,\"rotate\":29.32},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.56},{\"duration\":0,\"rotate\":17.58}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.14,\"y\":-0.41},{\"tweenEasing\":0,\"x\":-1.09,\"y\":3.38},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.98,\"y\":7.68},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.11,\"y\":7.9},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.64,\"y\":7.4},{\"duration\":0,\"x\":-1.77,\"y\":4.93}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":15.06},{\"tweenEasing\":0,\"rotate\":-33.12},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.04},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-7.03},{\"duration\":0,\"rotate\":-4.75}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.96,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"x\":0.98,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":0,\"x\":0.07,\"y\":-1.21}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.3},{\"tweenEasing\":0,\"rotate\":39.9},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.62},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":0,\"rotate\":25.1}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":0.01},{\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.01},{\"duration\":0,\"x\":-0.03}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.94},{\"tweenEasing\":0,\"rotate\":32.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-32.11},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-32.11},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-32.1},{\"duration\":0,\"rotate\":-21.33}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"tweenEasing\":0,\"x\":0.93},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.21},{\"duration\":0,\"x\":1.14}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.02},{\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.22},{\"duration\":0,\"x\":-0.27,\"y\":0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-4.04},{\"tweenEasing\":0,\"rotate\":-35.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-47.69},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-52.7},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-54.2},{\"duration\":0,\"rotate\":-43.45}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":1.01},{\"duration\":8}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.07,\"y\":0.02},{\"tweenEasing\":0,\"x\":1.55,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.06},{\"duration\":0,\"x\":-0.42,\"y\":-0.31}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-21.05},{\"tweenEasing\":0,\"rotate\":0.19},{\"duration\":2,\"tweenEasing\":0,\"rotate\":42.16},{\"duration\":2,\"tweenEasing\":0,\"rotate\":42.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":39.26},{\"duration\":0,\"rotate\":26.17}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":8}],\"colorFrame\":[{\"duration\":6},{\"duration\":5},{\"value\":{\"aM\":62}},{\"value\":{\"aM\":23}},{\"value\":{\"aM\":6}}]}]},{\"duration\":48,\"fadeInTime\":0.2,\"name\":\"Atk3\",\"frame\":[{\"duration\":33},{\"sound\":\"200029\"},{\"duration\":0,\"events\":[{\"name\":\"onTimeStart\"}]}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":35,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.14},{\"duration\":3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.05},{\"duration\":31,\"tweenEasing\":0,\"rotate\":7.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.53},{\"duration\":2,\"tweenEasing\":0,\"rotate\":23.8},{\"duration\":4,\"tweenEasing\":0,\"rotate\":49.66},{\"duration\":3,\"tweenEasing\":0,\"rotate\":39.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.81},{\"duration\":0,\"rotate\":12.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":0,\"x\":0.99}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.08},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.16},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.24,\"y\":1.07},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.28,\"y\":-0.38},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.8,\"y\":-1.94},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.88,\"y\":-2.45},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":-2.06},{\"duration\":0,\"x\":-0.14,\"y\":-1.07}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.69},{\"duration\":31,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.59},{\"duration\":2,\"tweenEasing\":0,\"rotate\":47.72},{\"duration\":4,\"tweenEasing\":0,\"rotate\":23.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":30.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.58},{\"duration\":0,\"rotate\":11.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":0,\"x\":0.99}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-2.16,\"y\":6.54},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.78,\"y\":6.22},{\"duration\":29,\"tweenEasing\":0,\"x\":-1.47,\"y\":6.73},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.62,\"y\":7.1},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.24,\"y\":11.37},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.25,\"y\":11.5},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.43,\"y\":10.87},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.26,\"y\":7.59},{\"duration\":0,\"x\":-0.88,\"y\":6.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-32.21},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-26.21},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-56.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-179.92},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-100.73},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-102.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-113.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-70.65},{\"duration\":0,\"rotate\":-31.81}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":4.9,\"y\":-9.52},{\"duration\":2,\"tweenEasing\":0,\"x\":2.89,\"y\":-7.56},{\"duration\":29,\"tweenEasing\":0,\"x\":2.64,\"y\":-7.28},{\"duration\":2,\"tweenEasing\":0,\"x\":1.37,\"y\":-7.87},{\"duration\":2,\"tweenEasing\":0,\"x\":4.56,\"y\":-11.44},{\"duration\":4,\"tweenEasing\":0,\"x\":3.7,\"y\":-11.38},{\"duration\":3,\"tweenEasing\":0,\"x\":4.77,\"y\":-11.2},{\"duration\":3,\"tweenEasing\":0,\"x\":4.44,\"y\":-9.48},{\"duration\":0,\"x\":2.47,\"y\":-6.28}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.11},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7.16},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-40.37},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-126.51},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-54.13},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-56.46},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-59.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-43.84},{\"duration\":0,\"rotate\":-21.78}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96},{\"duration\":0,\"x\":0.99}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.76,\"y\":-0.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.81},{\"duration\":29,\"tweenEasing\":0,\"x\":0.79,\"y\":0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":-0.19},{\"duration\":2,\"tweenEasing\":0,\"x\":0.75,\"y\":-0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.71,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.71,\"y\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.73,\"y\":-0.01},{\"duration\":0,\"x\":0.28}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.37},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-31.14},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-41.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.65},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-42.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-37.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.03},{\"duration\":0,\"rotate\":-2.51}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":29,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":0.85,\"y\":0.22},{\"duration\":29,\"tweenEasing\":0,\"x\":0.25,\"y\":0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.33,\"y\":0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.22,\"y\":0.18},{\"duration\":4,\"tweenEasing\":0,\"x\":1.17,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.21,\"y\":0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":1.24,\"y\":0.21},{\"duration\":0,\"x\":1.03,\"y\":0.18}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.79},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-33.15},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-45.42},{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.95},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.3},{\"duration\":0,\"rotate\":-9.52}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":0,\"x\":1.02,\"y\":0.99}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.05},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.24},{\"duration\":29,\"tweenEasing\":0,\"x\":0.37,\"y\":-0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":0.2,\"y\":-0.07},{\"duration\":4,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.02},{\"duration\":0,\"x\":0.09,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":18.07},{\"duration\":29,\"tweenEasing\":0,\"rotate\":18.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-6.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":44.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":46.12},{\"duration\":0,\"rotate\":34.82}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"x\":0.98}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.19},{\"duration\":29,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.34,\"y\":0.28},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.14},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":0.11},{\"duration\":0,\"y\":0.06}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":11.13},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.81},{\"duration\":29,\"tweenEasing\":0,\"rotate\":13.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":51.14},{\"duration\":4,\"tweenEasing\":0,\"rotate\":57.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":59.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":39.57},{\"duration\":0,\"rotate\":19.81}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.93},{\"duration\":2,\"tweenEasing\":0,\"y\":1.01},{\"duration\":29,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.11,\"y\":1.34},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"y\":0.98},{\"duration\":0,\"x\":1.01,\"y\":0.99}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":29,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":4,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0,\"x\":0.01,\"y\":0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.59},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.03},{\"duration\":29,\"tweenEasing\":0,\"rotate\":16.97},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.9},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":0,\"rotate\":9.1}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":29,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":0,\"y\":0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.29},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-28.61},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-69.47},{\"duration\":2,\"tweenEasing\":0,\"rotate\":176.49},{\"duration\":2,\"tweenEasing\":0,\"rotate\":21.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":22.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":28.28},{\"duration\":0,\"rotate\":32.29}]},{\"name\":\"effect_r\",\"translateFrame\":[{\"duration\":5,\"x\":-26.3,\"y\":-41.21},{\"duration\":28,\"tweenEasing\":0,\"x\":-26.3,\"y\":-41.21},{\"duration\":3,\"x\":-26.78,\"y\":-51.93},{\"duration\":4,\"tweenEasing\":0,\"x\":-1.03,\"y\":1.03},{\"duration\":3,\"x\":-1.03,\"y\":1.03},{\"tweenEasing\":0,\"x\":10.17,\"y\":6.63},{\"duration\":4,\"x\":30.97,\"y\":5.03}],\"rotateFrame\":[{\"duration\":33,\"rotate\":35.08},{\"duration\":3,\"rotate\":35.08},{\"duration\":12,\"rotate\":7.52}],\"scaleFrame\":[{\"duration\":33,\"x\":0.18,\"y\":0.16},{\"duration\":3,\"x\":0.18,\"y\":0.16},{\"duration\":4,\"tweenEasing\":0,\"x\":1.21,\"y\":1.09},{\"duration\":2,\"x\":1.68,\"y\":1.51},{\"tweenEasing\":0,\"x\":1.87,\"y\":1.68},{\"tweenEasing\":0,\"x\":1.63,\"y\":1.47},{\"duration\":4,\"x\":0.93,\"y\":0.84}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":5.91},{\"duration\":31,\"tweenEasing\":0,\"x\":6.06,\"y\":-12.9},{\"duration\":2,\"tweenEasing\":0,\"x\":7.94,\"y\":-22.23},{\"duration\":2,\"tweenEasing\":0,\"x\":2.9,\"y\":6.9},{\"duration\":7,\"tweenEasing\":0,\"x\":2.76,\"y\":6.68},{\"duration\":3,\"tweenEasing\":0,\"x\":2.3,\"y\":6.53},{\"duration\":0,\"x\":1.15,\"y\":3.27}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.76,\"y\":-2.17},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.6,\"y\":-2.49},{\"duration\":2,\"tweenEasing\":0,\"x\":0.34,\"y\":-3.43},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":-3.12},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":2.54,\"y\":-3.36},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":-3.47},{\"duration\":0,\"x\":-0.89,\"y\":-1.82}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-63.19},{\"duration\":31,\"tweenEasing\":0,\"rotate\":-33.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.76},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.5},{\"duration\":4,\"tweenEasing\":0,\"rotate\":1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.59},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.01},{\"duration\":0,\"rotate\":5.51}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":0.91},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":0,\"x\":0.92}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.74,\"y\":2.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.6,\"y\":2.43},{\"duration\":29,\"tweenEasing\":0,\"x\":-1.05,\"y\":1.09},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.33,\"y\":3.36},{\"duration\":2,\"tweenEasing\":0,\"x\":-1,\"y\":3.07},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.98,\"y\":3.3},{\"duration\":3,\"tweenEasing\":0,\"x\":0.2,\"y\":3.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.93,\"y\":3.4},{\"duration\":0,\"x\":-0.48,\"y\":1.71}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-43.89},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-63.16},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-39.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-61.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-63.15},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-78.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-66.92},{\"duration\":0,\"rotate\":-33.58}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":29,\"tweenEasing\":0,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.04},{\"duration\":31,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":0,\"x\":0.01,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":97.06},{\"duration\":31,\"tweenEasing\":0,\"rotate\":81.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":11.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.17},{\"duration\":4,\"tweenEasing\":0,\"rotate\":56.18},{\"duration\":3,\"tweenEasing\":0,\"rotate\":65.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.14},{\"duration\":0,\"rotate\":13.54}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":31,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":0,\"x\":0.95,\"y\":0.99}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.02},{\"duration\":29,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.1},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":0,\"x\":-0.95}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-17.87},{\"duration\":29,\"tweenEasing\":0,\"rotate\":103.48},{\"duration\":2,\"tweenEasing\":0,\"rotate\":56.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":68.88},{\"duration\":4,\"tweenEasing\":0,\"rotate\":69.4},{\"duration\":3,\"tweenEasing\":0,\"rotate\":82.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":71.17},{\"duration\":0,\"rotate\":35.8}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":29,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.77},{\"duration\":4,\"tweenEasing\":0,\"x\":0.81},{\"duration\":3,\"tweenEasing\":0,\"x\":0.85},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":0,\"x\":0.94}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.02},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.02,\"y\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":0,\"x\":0.03,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":31,\"tweenEasing\":0,\"rotate\":13},{\"duration\":2,\"tweenEasing\":0,\"rotate\":43.62},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-56.95},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-56.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.46},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-51.69},{\"duration\":0,\"rotate\":-17.16}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":31,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":12}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.61,\"y\":-0.08},{\"duration\":29,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":1.76,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.61,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.6,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.58,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0,\"x\":0.72,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.83},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.27},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-20.08},{\"duration\":2,\"tweenEasing\":0,\"rotate\":4.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7.97},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-6.42},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-3.63},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.23},{\"duration\":0,\"rotate\":-2.27}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect_r\",\"colorFrame\":[{\"duration\":34,\"value\":{\"aM\":0}},{\"duration\":2,\"value\":{\"aM\":0}},{\"duration\":5},{},{\"value\":{\"aM\":44}},{\"duration\":2,\"value\":{\"aM\":10}},{\"duration\":3,\"value\":{\"aM\":6}}]}]},{\"duration\":14,\"fadeInTime\":0.2,\"name\":\"Atk2\",\"frame\":[{\"duration\":5},{\"duration\":0,\"sound\":\"200026\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.03,\"y\":0.01},{\"duration\":7}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-0.25},{\"tweenEasing\":0,\"rotate\":-0.25},{\"tweenEasing\":0,\"rotate\":-1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0,\"rotate\":-0.25}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":1.01}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.11,\"y\":0.14},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.33},{\"duration\":0,\"x\":-0.1,\"y\":0.27}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.32},{\"tweenEasing\":0,\"rotate\":10.32},{\"tweenEasing\":0,\"rotate\":-1.49},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-0.49},{\"duration\":0,\"rotate\":-0.3}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.94},{\"duration\":0,\"x\":0.96}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":-0.76},{\"tweenEasing\":0,\"x\":0.16,\"y\":-0.38},{\"tweenEasing\":0,\"x\":-0.99,\"y\":5.26},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.51,\"y\":17.06},{\"duration\":0,\"x\":-0.41,\"y\":16.28}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":44.91},{\"tweenEasing\":0,\"rotate\":45.66},{\"tweenEasing\":0,\"rotate\":61.1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-91.96},{\"duration\":0,\"rotate\":-79.76}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.35,\"y\":-0.86},{\"tweenEasing\":0,\"x\":0.45,\"y\":-0.79},{\"tweenEasing\":0,\"x\":1.88,\"y\":-6.43},{\"duration\":7,\"tweenEasing\":0,\"x\":3.48,\"y\":-19.49},{\"duration\":0,\"x\":3.13,\"y\":-18.3}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-19.79},{\"tweenEasing\":0,\"rotate\":-18.04},{\"tweenEasing\":0,\"rotate\":23.73},{\"duration\":7,\"tweenEasing\":0,\"rotate\":44.71},{\"duration\":0,\"rotate\":42.09}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0,\"x\":0.96},{\"duration\":7,\"tweenEasing\":0,\"x\":1.05},{\"duration\":0,\"x\":1.02}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.8},{\"tweenEasing\":0,\"x\":0.77,\"y\":0.01},{\"tweenEasing\":0,\"x\":0.74,\"y\":-0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.72,\"y\":-0.07},{\"duration\":0,\"x\":0.69,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-0.8},{\"tweenEasing\":0,\"rotate\":-8.57},{\"tweenEasing\":0,\"rotate\":-24.34},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-18.82},{\"duration\":0,\"rotate\":-26.6}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.93,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.84,\"y\":1.01},{\"duration\":0,\"x\":0.85,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.04},{\"tweenEasing\":0,\"x\":0.18,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.92,\"y\":0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":1.21,\"y\":0.22},{\"duration\":0,\"x\":1.24,\"y\":0.19}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-22.9},{\"tweenEasing\":0,\"rotate\":-10.41},{\"tweenEasing\":0,\"rotate\":-62.21},{\"duration\":7,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":0,\"rotate\":2.22}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":0,\"x\":1.02,\"y\":1.01}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.03},{\"tweenEasing\":0,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.1,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.19,\"y\":-0.08},{\"duration\":0,\"x\":0.16,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-22.03},{\"tweenEasing\":0,\"rotate\":-22.3},{\"tweenEasing\":0,\"rotate\":3.75},{\"duration\":7,\"tweenEasing\":0,\"rotate\":95.26},{\"duration\":0,\"rotate\":83.25}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.99}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":0.04},{\"tweenEasing\":0,\"x\":0.02,\"y\":0.08},{\"tweenEasing\":0,\"x\":0.06,\"y\":0.16},{\"duration\":7,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.05},{\"duration\":0,\"x\":0.26,\"y\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":0.5},{\"tweenEasing\":0,\"rotate\":-2.27},{\"tweenEasing\":0,\"rotate\":-12.92},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-20.48},{\"duration\":0,\"rotate\":-23.94}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.03},{\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"duration\":7,\"tweenEasing\":0,\"x\":0.94,\"y\":0.76},{\"duration\":0,\"x\":0.96,\"y\":0.81}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0},{\"duration\":7,\"x\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":13.43},{\"tweenEasing\":0,\"rotate\":14.56},{\"tweenEasing\":0,\"rotate\":26.23},{\"duration\":7,\"tweenEasing\":0,\"rotate\":23.18},{\"duration\":0,\"rotate\":32.77}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":-0.01},{\"tweenEasing\":0},{\"duration\":7,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":19.53},{\"tweenEasing\":0,\"rotate\":26.53},{\"tweenEasing\":0,\"rotate\":13.24},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.02},{\"duration\":0,\"rotate\":17.77}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.16,\"y\":1.7},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":1.7},{\"duration\":7,\"x\":-0.86,\"y\":3.5}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.29,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.29,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.97,\"y\":-2.63},{\"duration\":7,\"tweenEasing\":0,\"x\":1.17,\"y\":-5.6},{\"duration\":0,\"x\":0.74,\"y\":-4.76}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.51},{\"tweenEasing\":0,\"rotate\":-12.51},{\"tweenEasing\":0,\"rotate\":-8.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":12.27},{\"duration\":0,\"rotate\":7.26}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.89},{\"tweenEasing\":0,\"x\":0.89},{\"tweenEasing\":0},{\"duration\":7,\"x\":1.02}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.28},{\"tweenEasing\":0,\"x\":-0.28},{\"tweenEasing\":0,\"x\":-0.9,\"y\":2.62},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.15,\"y\":5.52},{\"duration\":0,\"x\":-0.73,\"y\":4.7}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-15.06},{\"tweenEasing\":0,\"rotate\":-15.06},{\"tweenEasing\":0,\"rotate\":-26.1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-8.29},{\"duration\":0,\"rotate\":-31.37}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":7,\"x\":0.05,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.5},{\"tweenEasing\":0,\"rotate\":23.5},{\"tweenEasing\":0,\"rotate\":40.63},{\"duration\":7,\"tweenEasing\":0,\"rotate\":27.65},{\"duration\":0,\"rotate\":29.9}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.98,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":0,\"x\":1.02,\"y\":1.01}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0},{\"duration\":0,\"x\":-0.03,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.57},{\"tweenEasing\":0,\"rotate\":23.57},{\"tweenEasing\":0,\"rotate\":17.59},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-32.13},{\"duration\":0,\"rotate\":6.8}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94},{\"tweenEasing\":0,\"x\":0.94},{\"tweenEasing\":0,\"x\":0.89},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0,\"x\":0.94}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.07},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.07},{\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.05},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.03},{\"duration\":0,\"x\":-0.17,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-11.03},{\"tweenEasing\":0,\"rotate\":-11.03},{\"tweenEasing\":0,\"rotate\":-32.38},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-39.91},{\"duration\":0,\"rotate\":-37.15}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03},{\"tweenEasing\":0,\"x\":0.03},{\"tweenEasing\":0,\"x\":1.55,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.05},{\"duration\":0,\"x\":1.51,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-8.55},{\"tweenEasing\":0,\"rotate\":-8.55},{\"tweenEasing\":0,\"rotate\":8.43},{\"duration\":7,\"tweenEasing\":0,\"rotate\":40.37},{\"duration\":0,\"rotate\":24.52}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":14,\"value\":-1}]}]},{\"duration\":28,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Idle2\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":11,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-8.25},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.64},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.97},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.31},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03,\"y\":0.32},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.34},{\"duration\":6,\"tweenEasing\":0,\"x\":0.04,\"y\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.07},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":2.34},{\"duration\":11,\"tweenEasing\":0,\"rotate\":7.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":6,\"tweenEasing\":0,\"rotate\":5.79},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.25},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":12}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.43,\"y\":-0.55},{\"duration\":11,\"tweenEasing\":0,\"x\":2.28,\"y\":1.52},{\"duration\":2,\"tweenEasing\":0,\"x\":2.28,\"y\":1.52},{\"duration\":6,\"tweenEasing\":0,\"x\":1.35,\"y\":0.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.54,\"y\":0.14},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.66},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-127.17},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-127.17},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-102.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-44.58},{\"duration\":0}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.96,\"y\":-0.15},{\"duration\":11,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.67},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.67},{\"duration\":6,\"tweenEasing\":0,\"x\":0.08,\"y\":-1.12},{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.65},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-24.49},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-7.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":18.69},{\"duration\":6,\"tweenEasing\":0,\"rotate\":19.28},{\"duration\":6,\"tweenEasing\":0,\"rotate\":9.77},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":0.9},{\"duration\":2,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.87,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.91},{\"duration\":0}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.06},{\"duration\":11,\"tweenEasing\":0,\"x\":0.01,\"y\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.1},{\"duration\":6,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.94},{\"duration\":11,\"tweenEasing\":0,\"rotate\":9.46},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.33},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-14.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.3},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":11,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":0.92},{\"duration\":6,\"tweenEasing\":0,\"x\":1.02},{\"duration\":0}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.05},{\"duration\":11,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.07},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":1.11,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.97},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3.95},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.84},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.84,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":0}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.12},{\"duration\":11,\"tweenEasing\":0,\"x\":0.45,\"y\":-0.23},{\"duration\":2,\"tweenEasing\":0,\"x\":0.45,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.36,\"y\":-0.29},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.14},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-3.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-3.52},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-4.04},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-3.04},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":0}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":0.18},{\"duration\":6,\"tweenEasing\":0,\"x\":0.09,\"y\":0.19},{\"duration\":6,\"tweenEasing\":0,\"x\":0.04,\"y\":0.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-0.23},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.23},{\"duration\":6,\"tweenEasing\":0,\"rotate\":8.42},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.98},{\"duration\":11,\"tweenEasing\":0,\"x\":0.99,\"y\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":6,\"tweenEasing\":0,\"x\":0.98,\"y\":0.91},{\"duration\":6}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.01},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.56},{\"duration\":11,\"tweenEasing\":0,\"rotate\":35.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":34.46},{\"duration\":6,\"tweenEasing\":0,\"rotate\":35.98},{\"duration\":6,\"tweenEasing\":0,\"rotate\":26.72},{\"duration\":0}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.31,\"y\":-0.48},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.48},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.31,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.47},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":3.92,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":72.69},{\"tweenEasing\":0,\"rotate\":-95.52},{\"tweenEasing\":0,\"rotate\":-151.72},{\"tweenEasing\":0,\"rotate\":124.8},{\"tweenEasing\":0,\"rotate\":63.15},{\"tweenEasing\":0,\"rotate\":5.26},{\"tweenEasing\":0,\"rotate\":-57.46},{\"tweenEasing\":0,\"rotate\":-116.85},{\"tweenEasing\":0,\"rotate\":-174.24},{\"tweenEasing\":0,\"rotate\":123.54},{\"tweenEasing\":0,\"rotate\":64.15},{\"tweenEasing\":0,\"rotate\":6.51},{\"tweenEasing\":0,\"rotate\":-55.46},{\"tweenEasing\":0,\"rotate\":-104.3},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-96.77},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-55.71},{\"duration\":0}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.78,\"y\":2.3},{\"duration\":11,\"tweenEasing\":0,\"x\":1.32,\"y\":0.3},{\"duration\":2,\"tweenEasing\":0,\"x\":1.32,\"y\":0.3},{\"duration\":6,\"tweenEasing\":0,\"x\":0.33,\"y\":1.37},{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":0.69},{\"duration\":0}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.24},{\"duration\":11,\"tweenEasing\":0,\"x\":0.76,\"y\":-0.66},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"x\":0.72,\"y\":-0.54},{\"duration\":6,\"tweenEasing\":0,\"x\":0.56,\"y\":-0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-22.27},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3},{\"duration\":2,\"tweenEasing\":0,\"rotate\":2.75},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-11.76},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.93},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95},{\"duration\":0}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.23},{\"duration\":11,\"tweenEasing\":0,\"x\":-0.74,\"y\":0.62},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.77,\"y\":0.62},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.72,\"y\":0.49},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.24,\"y\":0.33},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.58},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-9.54},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.03},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":11,\"tweenEasing\":0,\"x\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":33.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":9.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.54},{\"duration\":6,\"tweenEasing\":0,\"rotate\":27.29},{\"duration\":6,\"tweenEasing\":0,\"rotate\":17.02},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"tweenEasing\":0,\"x\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.96},{\"duration\":0}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.06},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.59},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.77},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":6,\"tweenEasing\":0,\"rotate\":8.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.9},{\"duration\":11,\"tweenEasing\":0,\"x\":1.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.04},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":11,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-10.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.2},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-15.55},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.53},{\"duration\":0}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":0.01},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.08},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-2.98},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.73},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-3.76},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.26},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":28,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", + "dragonBonesJson": "{\"frameRate\":25,\"name\":\"SoldierElf\",\"version\":\"5.5\",\"compatibleVersion\":\"5.5\",\"armature\":[{\"type\":\"Armature\",\"frameRate\":25,\"name\":\"SoldierElf\",\"aabb\":{\"x\":-34.53,\"y\":-104.78,\"width\":86.87,\"height\":105.25},\"bone\":[{\"name\":\"root1\",\"transform\":{\"y\":-11.0128}},{\"inheritScale\":false,\"name\":\"effect_r\",\"parent\":\"root1\",\"transform\":{\"x\":33.28,\"y\":4,\"skX\":-46.2343,\"skY\":-23.9186,\"scX\":2.1416,\"scY\":2.3753}},{\"inheritScale\":false,\"length\":3,\"name\":\"root\",\"parent\":\"root1\",\"transform\":{\"x\":-0.04,\"y\":-15.48,\"skX\":90.2632,\"skY\":90.2632}},{\"inheritScale\":false,\"length\":5,\"name\":\"thigh_l\",\"parent\":\"root\",\"transform\":{\"x\":1.6606,\"y\":-6.4628,\"skX\":-40.9714,\"skY\":-40.9714,\"scX\":0.9869,\"scY\":0.9853}},{\"inheritScale\":false,\"length\":5,\"name\":\"thigh_r\",\"parent\":\"root\",\"transform\":{\"x\":1.3414,\"y\":6.0837,\"skX\":3.567,\"skY\":3.567,\"scX\":0.9859,\"scY\":0.9981}},{\"inheritScale\":false,\"length\":3,\"name\":\"pelvis\",\"parent\":\"root\",\"transform\":{\"x\":-3.2028,\"y\":0.1015,\"skX\":-174.7594,\"skY\":-174.7594,\"scX\":0.9802,\"scY\":0.9952}},{\"inheritScale\":false,\"length\":8,\"name\":\"chest\",\"parent\":\"pelvis\",\"transform\":{\"x\":4,\"y\":-0.0016,\"skX\":-5.2066,\"skY\":-5.2246,\"scX\":0.9979,\"scY\":0.9998}},{\"inheritScale\":false,\"length\":9,\"name\":\"calf_r\",\"parent\":\"thigh_r\",\"transform\":{\"x\":5.704,\"y\":0.0016,\"skX\":16.144,\"skY\":16.1453,\"scX\":0.9955,\"scY\":0.9905}},{\"inheritScale\":false,\"length\":7,\"name\":\"calf_l\",\"parent\":\"thigh_l\",\"transform\":{\"x\":5.6592,\"y\":-0.0016,\"skX\":32.6682,\"skY\":32.6684,\"scX\":0.9945,\"scY\":0.9954}},{\"inheritScale\":false,\"length\":5,\"name\":\"shouder_l\",\"parent\":\"chest\",\"transform\":{\"x\":8.6578,\"y\":9.9632,\"skX\":-164.5031,\"skY\":-164.5031,\"scX\":0.9868,\"scY\":0.9948}},{\"inheritScale\":false,\"length\":5,\"name\":\"shouder_r\",\"parent\":\"chest\",\"transform\":{\"x\":10.4583,\"y\":-13.3897,\"skX\":-147.4808,\"skY\":-147.4808,\"scX\":0.9972,\"scY\":0.9986}},{\"inheritScale\":false,\"name\":\"foot_l\",\"parent\":\"calf_l\",\"transform\":{\"x\":15.2897,\"y\":1.2193,\"skX\":8.0381,\"skY\":8.0381,\"scX\":0.9955}},{\"inheritScale\":false,\"name\":\"foot_r\",\"parent\":\"calf_r\",\"transform\":{\"x\":14.2999,\"y\":-2.3357,\"skX\":-19.9771,\"skY\":-19.9771,\"scX\":0.9955}},{\"inheritScale\":false,\"length\":12,\"name\":\"forearm_r\",\"parent\":\"shouder_r\",\"transform\":{\"x\":6.0016,\"y\":0.0016,\"skX\":-38.0045,\"skY\":-38.0045,\"scX\":0.9973,\"scY\":0.994}},{\"inheritScale\":false,\"length\":7,\"name\":\"forearm_l\",\"parent\":\"shouder_l\",\"transform\":{\"x\":6.0144,\"y\":-0.0016,\"skX\":-42.3089,\"skY\":-42.3089,\"scX\":0.9979,\"scY\":0.987}},{\"inheritScale\":false,\"name\":\"hand_r\",\"parent\":\"forearm_r\",\"transform\":{\"x\":13.7919,\"y\":0.7114,\"skX\":3.3187,\"skY\":3.3187,\"scX\":1.0446,\"scY\":0.9963}},{\"inheritScale\":false,\"name\":\"hand_l\",\"parent\":\"forearm_l\",\"transform\":{\"x\":7.6912,\"y\":-0.0032,\"skX\":119.4238,\"skY\":119.4238,\"scX\":0.9894,\"scY\":0.9954}},{\"inheritScale\":false,\"name\":\"weapon_hand_l\",\"parent\":\"hand_l\",\"transform\":{\"x\":-8.5173,\"y\":-2.6264,\"skX\":139.1066,\"skY\":139.1066,\"scX\":0.9967,\"scY\":0.9984}},{\"inheritRotation\":false,\"inheritScale\":false,\"name\":\"weapon_hand_r\",\"parent\":\"hand_r\",\"transform\":{\"x\":1.4768,\"y\":-3.0184,\"skX\":-17.7744,\"skY\":-17.7744,\"scX\":0.9981,\"scY\":0.999}}],\"slot\":[{\"name\":\"cape\",\"parent\":\"pelvis\"},{\"name\":\"shouder_l\",\"parent\":\"shouder_l\"},{\"name\":\"forearm_l\",\"parent\":\"forearm_l\"},{\"name\":\"hand_l\",\"parent\":\"hand_l\"},{\"name\":\"weapon_hand_l\",\"parent\":\"weapon_hand_l\"},{\"name\":\"thigh_l\",\"parent\":\"thigh_l\"},{\"name\":\"calf_l\",\"parent\":\"calf_l\"},{\"name\":\"foot_l\",\"parent\":\"foot_l\"},{\"name\":\"pelvis\",\"parent\":\"pelvis\"},{\"name\":\"thigh_r\",\"parent\":\"thigh_r\"},{\"name\":\"calf_r\",\"parent\":\"calf_r\"},{\"name\":\"foot_r\",\"parent\":\"foot_r\"},{\"name\":\"shouder_r\",\"parent\":\"shouder_r\"},{\"name\":\"chest\",\"parent\":\"chest\"},{\"name\":\"weapon_hand_r\",\"parent\":\"weapon_hand_r\"},{\"name\":\"forearm_r\",\"parent\":\"forearm_r\"},{\"name\":\"hand_r\",\"parent\":\"hand_r\"},{\"name\":\"effect_r\",\"parent\":\"effect_r\"}],\"skin\":[{\"slot\":[{\"name\":\"forearm_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/forearm_l_2\",\"transform\":{\"x\":5.09,\"y\":0.15,\"skX\":-63.39,\"skY\":-63.39},\"path\":\"forearm_l\"}]},{\"name\":\"effect_r\",\"display\":[{\"name\":\"we_bl_4\",\"transform\":{\"x\":11.39,\"y\":-12.38},\"path\":\"we_bl_4_f_1\"}]},{\"name\":\"shouder_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/shouder_l_1\",\"transform\":{\"x\":0.4,\"y\":0.06,\"skX\":-68.92,\"skY\":-68.56,\"scX\":1.0015,\"scY\":0.9985},\"path\":\"shouder_l\"}]},{\"name\":\"thigh_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/thigh_r_0\",\"transform\":{\"x\":-0.65,\"y\":1.03,\"skX\":-94.6,\"skY\":-94.62,\"scX\":0.9991,\"scY\":0.99},\"path\":\"thigh_r\"}]},{\"name\":\"pelvis\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/pelvis_0\",\"transform\":{\"x\":9.56,\"y\":-1.5,\"skX\":83.65,\"skY\":83.65},\"path\":\"pelvis\"}]},{\"name\":\"weapon_hand_r\",\"display\":[{\"name\":\"weapon_hand_r\",\"transform\":{\"x\":14.2,\"y\":2.01,\"skX\":51,\"skY\":51},\"path\":\"weapon_hand_l\"}]},{\"name\":\"hand_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/hand_r_2\",\"transform\":{\"x\":3.51,\"y\":-2.17,\"skX\":-84.89,\"skY\":-84.89},\"path\":\"hand_r\"}]},{\"name\":\"weapon_hand_l\",\"display\":[{\"name\":\"weapon_hand_l\",\"transform\":{\"x\":12.59,\"y\":1.83,\"skX\":52.1,\"skY\":52.1}}]},{\"name\":\"shouder_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/shouder_r_1\",\"transform\":{\"x\":0.46,\"y\":0.08,\"skX\":-136.05,\"skY\":-136.05},\"path\":\"shouder_r\"}]},{\"name\":\"calf_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/calf_l_0\",\"transform\":{\"x\":7.16,\"y\":0.84,\"skX\":-91.2,\"skY\":-91.2},\"path\":\"calf_l\"}]},{\"name\":\"foot_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/foot_r_0\",\"transform\":{\"x\":1.06,\"y\":-1.31,\"skX\":-85.95,\"skY\":-85.95},\"path\":\"foot_r\"}]},{\"name\":\"foot_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/foot_l_0\",\"transform\":{\"x\":1.82,\"y\":-3.5,\"skX\":-90.37,\"skY\":-90.37},\"path\":\"foot_l\"}]},{\"name\":\"calf_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/calf_r_0\",\"transform\":{\"x\":5.87,\"y\":0.08,\"skX\":-91.22,\"skY\":-91.22},\"path\":\"calf_r\"}]},{\"name\":\"thigh_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/thigh_l_0\",\"transform\":{\"x\":1.19,\"y\":0.3,\"skX\":-66.04,\"skY\":-66.04},\"path\":\"thigh_l\"}]},{\"name\":\"hand_l\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/hand_l_2\",\"transform\":{\"x\":-5.62,\"y\":-5.3,\"skX\":179.52,\"skY\":179.52},\"path\":\"hand_l\"}]},{\"name\":\"forearm_r\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/forearm_r_3\",\"transform\":{\"x\":6.7,\"y\":0.41,\"skX\":-87.21,\"skY\":-87.21},\"path\":\"forearm_r\"}]},{\"name\":\"chest\",\"display\":[{\"name\":\"mecha_1004d_folder/textures/chest_0\",\"transform\":{\"x\":42.26,\"y\":-1.48,\"skX\":90.4,\"skY\":90.61},\"path\":\"chest\"}]},{\"name\":\"cape\",\"display\":[{\"name\":\"cape\",\"transform\":{\"x\":10.59,\"y\":-16.32,\"skX\":84.58,\"skY\":84.41,\"scX\":1.0049,\"scY\":1.0201}}]}]}],\"animation\":[{\"duration\":60,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Idle1\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.31},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":0.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.48},{\"duration\":0}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.6,\"y\":-0.22},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":0}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.23,\"y\":0.28},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.98},{\"duration\":0}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.01},{\"duration\":0}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"hand_l\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-0.92},{\"duration\":0}]},{\"name\":\"weapon_hand_r\",\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-3.01},{\"duration\":0}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":0}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.45,\"y\":-0.21},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":7.53},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-1.75},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":-10.55},{\"duration\":0}],\"scaleFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":1.03},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":1.5},{\"duration\":0}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"y\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":30,\"tweenEasing\":0},{\"duration\":30,\"tweenEasing\":0,\"rotate\":3.03},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":60,\"value\":-1}]}]},{\"duration\":58,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Walking\",\"frame\":[{\"duration\":27},{\"duration\":31,\"sound\":\"footstep\"},{\"duration\":0,\"sound\":\"walk\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":17,\"tweenEasing\":0,\"x\":-0.47,\"y\":-0.01},{\"duration\":8,\"tweenEasing\":0,\"x\":0.01},{\"duration\":5,\"tweenEasing\":0},{\"duration\":16,\"tweenEasing\":0,\"x\":-1.06,\"y\":0.03},{\"duration\":0,\"x\":-0.1}],\"rotateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"rotate\":6.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.25},{\"duration\":17,\"tweenEasing\":0,\"rotate\":5},{\"duration\":8,\"tweenEasing\":0,\"rotate\":5.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":16,\"tweenEasing\":0,\"rotate\":5.75},{\"duration\":0,\"rotate\":6.05}],\"scaleFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":1.01},{\"duration\":19,\"tweenEasing\":0,\"x\":0.98},{\"duration\":8,\"tweenEasing\":0,\"x\":0.98},{\"duration\":21}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.06,\"y\":0.19},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.27},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.28},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.29},{\"duration\":7,\"tweenEasing\":0,\"x\":1.11,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.23},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.28,\"y\":0.26},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.25},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.23},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.05,\"y\":0.24},{\"duration\":9,\"tweenEasing\":0,\"x\":0.69,\"y\":0.13},{\"duration\":0,\"x\":0.33,\"y\":0.17}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.04},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-3.46},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.94},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-3.06},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-4.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.2},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-3.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.26},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.62},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5.53},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-7.66},{\"duration\":0,\"rotate\":-5.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":9,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":32}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-1.74,\"y\":8.78},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.64,\"y\":8.53},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":6.91},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.96,\"y\":6.53},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.54,\"y\":5.36},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.63,\"y\":4.56},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.91,\"y\":5.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-1.15,\"y\":5.24},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.33,\"y\":6.55},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.37,\"y\":6.99},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.4,\"y\":7.48},{\"duration\":9,\"tweenEasing\":0,\"x\":-1.43,\"y\":8.33},{\"duration\":0,\"x\":-1.62,\"y\":8.69}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-17.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-8.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-2.29},{\"duration\":3,\"tweenEasing\":0,\"rotate\":2.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":5,\"tweenEasing\":0,\"rotate\":0.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.48},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-2.99},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-7.27},{\"duration\":0,\"rotate\":-17.54}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":2.41,\"y\":-9.55},{\"duration\":7,\"tweenEasing\":0,\"x\":2.28,\"y\":-9.45},{\"duration\":2,\"tweenEasing\":0,\"x\":1.84,\"y\":-8.13},{\"duration\":7,\"tweenEasing\":0,\"x\":1.7,\"y\":-7.82},{\"duration\":7,\"tweenEasing\":0,\"x\":1.34,\"y\":-6.83},{\"duration\":3,\"tweenEasing\":0,\"x\":1.5,\"y\":-6.26},{\"duration\":3,\"tweenEasing\":0,\"x\":1.76,\"y\":-6.59},{\"duration\":5,\"tweenEasing\":0,\"x\":1.99,\"y\":-6.82},{\"duration\":2,\"tweenEasing\":0,\"x\":2.13,\"y\":-7.95},{\"duration\":3,\"tweenEasing\":0,\"x\":2.15,\"y\":-8.36},{\"duration\":7,\"tweenEasing\":0,\"x\":2.16,\"y\":-8.77},{\"duration\":9,\"tweenEasing\":0,\"x\":2.12,\"y\":-9.35},{\"duration\":0,\"x\":2.28,\"y\":-9.54}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.06},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.76},{\"duration\":7,\"tweenEasing\":0,\"rotate\":4.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-0.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.5},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.98},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.98},{\"duration\":7,\"tweenEasing\":0,\"rotate\":1.52},{\"duration\":9,\"tweenEasing\":0,\"rotate\":7.27},{\"duration\":0,\"rotate\":9.53}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.85},{\"duration\":7,\"tweenEasing\":0,\"x\":0.87},{\"duration\":2,\"tweenEasing\":0,\"x\":0.91},{\"duration\":7,\"tweenEasing\":0,\"x\":0.91},{\"duration\":7,\"tweenEasing\":0,\"x\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.87},{\"duration\":8,\"tweenEasing\":0,\"x\":0.86},{\"duration\":2,\"tweenEasing\":0,\"x\":0.86},{\"duration\":10,\"tweenEasing\":0,\"x\":0.87},{\"duration\":9,\"tweenEasing\":0,\"x\":0.87},{\"duration\":0,\"x\":0.86}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.82,\"y\":-0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.8,\"y\":-0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.1},{\"duration\":7,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":0.8,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.83,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.08},{\"duration\":7,\"tweenEasing\":0,\"x\":0.84,\"y\":-0.1},{\"duration\":9,\"tweenEasing\":0,\"x\":0.83,\"y\":-0.12},{\"duration\":0,\"x\":0.82,\"y\":-0.13}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.96},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.97},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.24},{\"duration\":7,\"tweenEasing\":0,\"rotate\":7.74},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.73},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.7},{\"duration\":5,\"tweenEasing\":0,\"rotate\":6.69},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.95},{\"duration\":7,\"tweenEasing\":0,\"rotate\":0.44},{\"duration\":9,\"tweenEasing\":0,\"rotate\":0.2},{\"duration\":0,\"rotate\":5.68}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.85,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.89,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.95},{\"duration\":7,\"tweenEasing\":0,\"x\":0.96},{\"duration\":3,\"tweenEasing\":0,\"x\":0.95},{\"duration\":3,\"tweenEasing\":0,\"x\":0.95},{\"duration\":5,\"tweenEasing\":0,\"x\":0.94},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":7,\"tweenEasing\":0,\"x\":0.92},{\"duration\":9,\"tweenEasing\":0,\"x\":0.9},{\"duration\":0,\"x\":0.86,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.24,\"y\":0.22},{\"duration\":7,\"tweenEasing\":0,\"x\":1.24,\"y\":0.23},{\"duration\":2,\"tweenEasing\":0,\"x\":1.23,\"y\":0.21},{\"duration\":7,\"tweenEasing\":0,\"x\":1.24,\"y\":0.2},{\"duration\":7,\"tweenEasing\":0,\"x\":1.21,\"y\":0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.2,\"y\":0.2},{\"duration\":3,\"tweenEasing\":0,\"x\":1.21,\"y\":0.2},{\"duration\":5,\"tweenEasing\":0,\"x\":1.2,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":1.18,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.17,\"y\":0.18},{\"duration\":7,\"tweenEasing\":0,\"x\":1.19,\"y\":0.18},{\"duration\":9,\"tweenEasing\":0,\"x\":1.25,\"y\":0.2},{\"duration\":0,\"x\":1.23,\"y\":0.22}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":5.27},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":10},{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":9.01},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.77},{\"duration\":9,\"tweenEasing\":0,\"rotate\":8.53},{\"duration\":0,\"rotate\":7.78}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":16,\"tweenEasing\":0,\"x\":1.03},{\"duration\":7,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":9,\"x\":1.03}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":0.12,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.11,\"y\":-0.05},{\"duration\":7,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11},{\"duration\":5,\"tweenEasing\":0,\"x\":0.12,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.05},{\"duration\":9,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.05},{\"duration\":0,\"x\":0.14,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.5},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-4.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-5.25},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.25},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-6.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-1.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0,\"rotate\":-4.75}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":9,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0,\"x\":0.98,\"y\":0.99}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.13,\"y\":0.09},{\"duration\":7,\"tweenEasing\":0,\"x\":0.09,\"y\":0.09},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.1},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":0.13},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":0.14},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06,\"y\":0.15},{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":0.15},{\"duration\":7,\"tweenEasing\":0,\"x\":0.08,\"y\":0.14},{\"duration\":9,\"tweenEasing\":0,\"x\":0.1,\"y\":0.14},{\"duration\":0,\"x\":0.12,\"y\":0.11}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.14},{\"duration\":7,\"tweenEasing\":0,\"rotate\":6.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.82},{\"duration\":7,\"tweenEasing\":0,\"rotate\":9.31},{\"duration\":7,\"tweenEasing\":0,\"rotate\":7.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.3},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.05},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.06},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.32},{\"duration\":3,\"tweenEasing\":0,\"rotate\":8.08},{\"duration\":7,\"tweenEasing\":0,\"rotate\":9.08},{\"duration\":9,\"tweenEasing\":0,\"rotate\":9.35},{\"duration\":0,\"rotate\":5.91}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.95},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99,\"y\":0.96},{\"duration\":2,\"tweenEasing\":0,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"y\":0.97},{\"duration\":23,\"tweenEasing\":0,\"x\":0.99,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99,\"y\":0.97},{\"duration\":9,\"tweenEasing\":0,\"y\":0.97},{\"duration\":0,\"y\":0.96}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":0.01},{\"duration\":8,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":9,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0,\"x\":0.02,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.05},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.94},{\"duration\":2,\"tweenEasing\":0,\"rotate\":17.95},{\"duration\":7,\"tweenEasing\":0,\"rotate\":18.42},{\"duration\":7,\"tweenEasing\":0,\"rotate\":20.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.19},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.94},{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.36},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.8},{\"duration\":7,\"tweenEasing\":0,\"rotate\":21.24},{\"duration\":9,\"tweenEasing\":0,\"rotate\":20.8},{\"duration\":0,\"rotate\":21.25}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"y\":0.01},{\"duration\":9,\"tweenEasing\":0,\"y\":0.01},{\"duration\":0,\"x\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-3.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.76},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.77},{\"duration\":7,\"tweenEasing\":0,\"rotate\":14.4},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.27},{\"duration\":3,\"tweenEasing\":0,\"rotate\":19.78},{\"duration\":5,\"tweenEasing\":0,\"rotate\":21.53},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.53},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.28},{\"duration\":7,\"tweenEasing\":0,\"rotate\":21.78},{\"duration\":9,\"tweenEasing\":0,\"rotate\":12.52},{\"duration\":0,\"rotate\":-0.5}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":10,\"tweenEasing\":0,\"x\":-1.63,\"y\":0.96},{\"duration\":19,\"tweenEasing\":0,\"x\":-1.48,\"y\":0.02},{\"duration\":8,\"tweenEasing\":0,\"x\":-1.63,\"y\":1.03},{\"duration\":21,\"tweenEasing\":0,\"x\":-1.79,\"y\":0.99},{\"duration\":0,\"x\":-1.65,\"y\":0.95}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.64,\"y\":-2.98},{\"duration\":2,\"tweenEasing\":0,\"x\":1.2,\"y\":-3.05},{\"duration\":5,\"tweenEasing\":0,\"x\":1.43,\"y\":-3.11},{\"duration\":2,\"tweenEasing\":0,\"x\":1.14,\"y\":-3.22},{\"duration\":7,\"tweenEasing\":0,\"x\":0.73,\"y\":-3.3},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.05,\"y\":-3.55},{\"duration\":3,\"tweenEasing\":0,\"x\":0.51,\"y\":-3.77},{\"duration\":3,\"tweenEasing\":0,\"x\":1.26,\"y\":-3.91},{\"duration\":5,\"tweenEasing\":0,\"x\":1.48,\"y\":-3.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1,\"y\":-3.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.45,\"y\":-3.93},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.23,\"y\":-3.84},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.66,\"y\":-3.51},{\"duration\":0,\"x\":0.16,\"y\":-3.07}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-21.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.53},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-26.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-53.15},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-58.92},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-60.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-72.97},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-65.19},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-68.71},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-61.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-54.4},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-44.36},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-31.31},{\"duration\":0,\"rotate\":-21.52}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":0,\"x\":1.01}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.63,\"y\":2.95},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.37,\"y\":3},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":3.18},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.64,\"y\":3.24},{\"duration\":7,\"tweenEasing\":0,\"x\":-2.57,\"y\":3.46},{\"duration\":3,\"tweenEasing\":0,\"x\":-2,\"y\":3.72},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.22,\"y\":3.86},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.89,\"y\":3.94},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.79,\"y\":3.96},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.99,\"y\":3.91},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.38,\"y\":3.91},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.88,\"y\":3.85},{\"duration\":9,\"tweenEasing\":0,\"x\":-2.1,\"y\":3.53},{\"duration\":0,\"x\":-1.12,\"y\":3.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.58},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-21.34},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-5.52},{\"duration\":7,\"tweenEasing\":0,\"rotate\":1.26},{\"duration\":7,\"tweenEasing\":0,\"rotate\":20.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.33},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.83},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-8.29},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-15.32},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-18.83},{\"duration\":0,\"rotate\":-19.05}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.02},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.02},{\"duration\":9,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":0,\"x\":0.07,\"y\":-0.06}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.14},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.43},{\"duration\":5,\"tweenEasing\":0,\"rotate\":64.7},{\"duration\":2,\"tweenEasing\":0,\"rotate\":80.26},{\"duration\":7,\"tweenEasing\":0,\"rotate\":79.51},{\"duration\":7,\"tweenEasing\":0,\"rotate\":56.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":52.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":42.17},{\"duration\":5,\"tweenEasing\":0,\"rotate\":48.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.66},{\"duration\":3,\"tweenEasing\":0,\"rotate\":43.64},{\"duration\":7,\"tweenEasing\":0,\"rotate\":35.85},{\"duration\":9,\"tweenEasing\":0,\"rotate\":32.07},{\"duration\":0,\"rotate\":41.6}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":0.98}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.01},{\"duration\":0,\"x\":-0.03,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":27.35},{\"duration\":2,\"tweenEasing\":0,\"rotate\":23.54},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.51},{\"duration\":7,\"tweenEasing\":0,\"rotate\":10.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.49},{\"duration\":3,\"tweenEasing\":0,\"rotate\":36.56},{\"duration\":2,\"tweenEasing\":0,\"rotate\":47.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":54.38},{\"duration\":2,\"tweenEasing\":0,\"rotate\":63.92},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":62.92},{\"duration\":9,\"tweenEasing\":0,\"rotate\":43.86},{\"duration\":0,\"rotate\":24.05}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.24,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.23,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.01},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.04},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.17},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.16,\"y\":0.03},{\"duration\":9,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.02},{\"duration\":0,\"x\":-0.21,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.1},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-16.61},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.35},{\"duration\":2,\"tweenEasing\":0,\"rotate\":10.49},{\"duration\":7,\"tweenEasing\":0,\"rotate\":13.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.03},{\"duration\":5,\"tweenEasing\":0,\"rotate\":20.28},{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":10.78},{\"duration\":7,\"tweenEasing\":0,\"rotate\":8.52},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0,\"rotate\":-16.03}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":20,\"tweenEasing\":0},{\"duration\":9,\"tweenEasing\":0},{\"duration\":0,\"x\":0.98}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.53,\"y\":-0.14},{\"duration\":7,\"tweenEasing\":0,\"x\":1.52,\"y\":-0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.07},{\"duration\":7,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.09},{\"duration\":7,\"tweenEasing\":0,\"x\":1.51,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":1.49,\"y\":-0.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.5,\"y\":-0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":1.52,\"y\":-0.15},{\"duration\":7,\"tweenEasing\":0,\"x\":1.55,\"y\":-0.16},{\"duration\":9,\"tweenEasing\":0,\"x\":1.56,\"y\":-0.1},{\"duration\":0,\"x\":1.54,\"y\":-0.11}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.94},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-7.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-19},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-21.75},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-31.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.59},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-49.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-47.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-44.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-31.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-20.56},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-18.8},{\"duration\":9,\"tweenEasing\":0,\"rotate\":-26.94},{\"duration\":0,\"rotate\":-13.54}],\"scaleFrame\":[{\"duration\":19,\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":10,\"tweenEasing\":0,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"y\":0.99},{\"duration\":9,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":58,\"value\":-1}]}]},{\"duration\":66,\"fadeInTime\":0.1,\"name\":\"Dying\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.36,\"y\":-0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.16},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.64,\"y\":-0.33},{\"duration\":9,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.32},{\"duration\":0,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":17.28},{\"duration\":4,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-5.5},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-6},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.51},{\"duration\":2,\"tweenEasing\":0,\"rotate\":20.04},{\"duration\":3,\"tweenEasing\":0,\"rotate\":41.37},{\"duration\":4,\"tweenEasing\":0,\"rotate\":82.99},{\"duration\":3,\"tweenEasing\":0,\"rotate\":84},{\"duration\":9,\"tweenEasing\":0,\"rotate\":87.25},{\"duration\":0,\"rotate\":85}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.04},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":9,\"x\":1.03}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.71},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.28},{\"tweenEasing\":0,\"x\":0.05,\"y\":0.48},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":0.86},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.27,\"y\":0.94},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.54},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.35},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19,\"y\":0.43},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.39},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.1,\"y\":0.23},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.1,\"y\":0.26},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.53},{\"duration\":0,\"x\":-0.07,\"y\":0.25}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":44.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.74},{\"tweenEasing\":0,\"rotate\":10.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.29},{\"duration\":10,\"tweenEasing\":0,\"rotate\":4.32},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.32},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.13},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-0.44},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.76},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.21},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-25.71},{\"duration\":3,\"tweenEasing\":0,\"rotate\":15.88},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-3.38},{\"duration\":5,\"tweenEasing\":0,\"rotate\":12.65},{\"duration\":0,\"rotate\":15.67}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.93},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0},{\"duration\":5,\"x\":1.01}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-2.6,\"y\":7.58},{\"duration\":3,\"tweenEasing\":0,\"x\":1.4,\"y\":8.29},{\"tweenEasing\":0,\"x\":3.2,\"y\":6.9},{\"duration\":2,\"tweenEasing\":0,\"x\":1.67,\"y\":5.49},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.81,\"y\":4.98},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.99,\"y\":5.37},{\"duration\":5,\"tweenEasing\":0,\"x\":0.57,\"y\":5.79},{\"duration\":2,\"tweenEasing\":0,\"x\":0.83,\"y\":4.7},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":3.96},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":2.83},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.08,\"y\":4.1},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.24,\"y\":6.75},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.48,\"y\":14.35},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.97,\"y\":13.13},{\"duration\":4,\"tweenEasing\":0,\"x\":-1.45,\"y\":13.55},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.61,\"y\":12.94},{\"duration\":0,\"x\":-0.52,\"y\":12.96}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-81.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":69.12},{\"tweenEasing\":0,\"rotate\":70.36},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.92},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-7.21},{\"duration\":10,\"tweenEasing\":0,\"rotate\":6.38},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":2,\"tweenEasing\":0,\"rotate\":32.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":78.92},{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.95},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-17.09},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-30.39},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-8.51},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-68.19},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-62.93},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-55.67},{\"duration\":0,\"rotate\":-55.92}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.86,\"y\":-11.59},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.92,\"y\":-12.92},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.4,\"y\":-12.54},{\"tweenEasing\":0,\"x\":-0.47,\"y\":-9.24},{\"duration\":2,\"tweenEasing\":0,\"x\":0.23,\"y\":-7.51},{\"duration\":10,\"tweenEasing\":0,\"x\":2.02,\"y\":-4.95},{\"duration\":10,\"tweenEasing\":0,\"x\":4.02,\"y\":-5.5},{\"duration\":5,\"tweenEasing\":0,\"x\":1.57,\"y\":-6.9},{\"duration\":2,\"tweenEasing\":0,\"x\":1.38,\"y\":-5.55},{\"duration\":3,\"tweenEasing\":0,\"x\":1.22,\"y\":-4.68},{\"duration\":3,\"tweenEasing\":0,\"x\":2,\"y\":-3.25},{\"duration\":2,\"tweenEasing\":0,\"x\":3.13,\"y\":-4.25},{\"duration\":3,\"tweenEasing\":0,\"x\":1.42,\"y\":-8.87},{\"duration\":4,\"tweenEasing\":0,\"x\":2.96,\"y\":-16.32},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25,\"y\":-14.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.16,\"y\":-14.36},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.56,\"y\":-13.82},{\"duration\":0,\"x\":-0.59,\"y\":-13.92}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-106.06},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-8.75},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.7},{\"tweenEasing\":0,\"rotate\":16.47},{\"duration\":2,\"tweenEasing\":0,\"rotate\":17.43},{\"duration\":10,\"tweenEasing\":0,\"rotate\":16.36},{\"duration\":10,\"tweenEasing\":0,\"rotate\":1.1},{\"duration\":5,\"tweenEasing\":0,\"rotate\":25.08},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-9.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-30.15},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.96},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-20.8},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-28.08},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-20.04},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-19.34},{\"duration\":0,\"rotate\":-19.1}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.08,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.09,\"y\":0.99},{\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.86,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":0.81,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.82},{\"duration\":4,\"tweenEasing\":0,\"x\":0.72,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.18},{\"duration\":5,\"tweenEasing\":0,\"x\":1.2},{\"duration\":0,\"x\":1.15}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-0.08,\"y\":0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.3,\"y\":-0.21},{\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.26},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.15,\"y\":-0.27},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.24},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.07,\"y\":-0.15},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.16,\"y\":-0.27},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.22},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":-0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.24,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.23,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.27,\"y\":-0.04},{\"duration\":0,\"x\":-0.24,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":-1.88},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.52},{\"tweenEasing\":0,\"rotate\":-12.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-7.79},{\"duration\":10,\"tweenEasing\":0,\"rotate\":11.55},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.93},{\"duration\":2,\"tweenEasing\":0,\"rotate\":4.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.43},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.3},{\"duration\":4,\"tweenEasing\":0,\"rotate\":40.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":36.08},{\"duration\":4,\"tweenEasing\":0,\"rotate\":29.81},{\"duration\":5,\"tweenEasing\":0,\"rotate\":39.09},{\"duration\":0,\"rotate\":40.61}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.87,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.86,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.83},{\"duration\":2,\"tweenEasing\":0,\"x\":0.83},{\"duration\":10,\"tweenEasing\":0,\"x\":0.85},{\"duration\":10,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.82,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.76,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.75,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.7,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66},{\"duration\":5,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":0,\"x\":0.76,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.11,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.38,\"y\":0.34},{\"tweenEasing\":0,\"x\":-2.98,\"y\":0.44},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.4,\"y\":0.55},{\"duration\":10,\"tweenEasing\":0,\"x\":0.17,\"y\":0.4},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.44},{\"duration\":5,\"tweenEasing\":0,\"x\":0.08,\"y\":0.4},{\"duration\":2,\"tweenEasing\":0,\"x\":0.6,\"y\":0.37},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.3},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":0.28},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":0.23},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.42,\"y\":0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.78,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.47,\"y\":-0.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-3.04},{\"duration\":0,\"x\":-2.96,\"y\":0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-10.55},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-146.71},{\"tweenEasing\":0,\"rotate\":-125.63},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-48.42},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-26.84},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-54.95},{\"duration\":5,\"tweenEasing\":0,\"rotate\":13.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-41.41},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.18},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-9.62},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.1},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-31.67},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.85},{\"duration\":4,\"tweenEasing\":0,\"rotate\":12.72},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-9.87},{\"duration\":0,\"rotate\":-12.37}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.89,\"y\":0.99},{\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.77,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.9,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.92},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.67},{\"duration\":3,\"tweenEasing\":0,\"x\":0.87,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":4,\"tweenEasing\":0,\"x\":0.74},{\"duration\":3,\"tweenEasing\":0,\"x\":0.77},{\"duration\":4,\"tweenEasing\":0,\"x\":0.74,\"y\":0.99},{\"duration\":5,\"x\":0.72,\"y\":0.99}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":-0.2},{\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.25,\"y\":-0.08},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.07,\"y\":-0.02},{\"duration\":10,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.02,\"y\":0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.15},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.05,\"y\":0.29},{\"duration\":3,\"tweenEasing\":0,\"x\":0.13,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":0.25,\"y\":-0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.17},{\"duration\":4,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.19},{\"duration\":5,\"tweenEasing\":0,\"x\":0.24,\"y\":-0.16},{\"duration\":0,\"x\":0.23,\"y\":-0.17}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":4.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-12.06},{\"tweenEasing\":0,\"rotate\":152.64},{\"duration\":2,\"tweenEasing\":0,\"rotate\":130.33},{\"duration\":10,\"tweenEasing\":0,\"rotate\":134.36},{\"duration\":10,\"tweenEasing\":0,\"rotate\":144.41},{\"duration\":5,\"tweenEasing\":0,\"rotate\":90.23},{\"duration\":2,\"tweenEasing\":0,\"rotate\":79.72},{\"duration\":3,\"tweenEasing\":0,\"rotate\":71.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":59.63},{\"duration\":2,\"tweenEasing\":0,\"rotate\":110.84},{\"duration\":3,\"tweenEasing\":0,\"rotate\":121.36},{\"duration\":4,\"tweenEasing\":0,\"rotate\":146.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":155.42},{\"duration\":4,\"tweenEasing\":0,\"rotate\":148.64},{\"duration\":5,\"tweenEasing\":0,\"rotate\":148.89},{\"duration\":0,\"rotate\":149.89}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.65,\"y\":0.99},{\"tweenEasing\":0,\"x\":0.69},{\"duration\":2,\"tweenEasing\":0},{\"duration\":27,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":12,\"x\":0.97}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":-0.12,\"y\":0.09},{\"duration\":2,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.06},{\"tweenEasing\":0,\"x\":0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":0.02},{\"duration\":10,\"tweenEasing\":0,\"x\":0.16,\"y\":0.05},{\"duration\":10,\"tweenEasing\":0,\"x\":0.09,\"y\":0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.21,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":0.11,\"y\":0.11},{\"duration\":3,\"tweenEasing\":0,\"x\":0.06,\"y\":0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.02,\"y\":0.24},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.04,\"y\":0.06},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.37,\"y\":0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.03},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.44,\"y\":0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.19,\"y\":0.01},{\"duration\":0,\"x\":-0.01,\"y\":0.04}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":3.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":15.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":32.47},{\"tweenEasing\":0,\"rotate\":59.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":63.85},{\"duration\":10,\"tweenEasing\":0,\"rotate\":64.64},{\"duration\":10,\"tweenEasing\":0,\"rotate\":35.73},{\"duration\":5,\"tweenEasing\":0,\"rotate\":26.18},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.62},{\"duration\":3,\"tweenEasing\":0,\"rotate\":4.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.9},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.02},{\"duration\":4,\"tweenEasing\":0,\"rotate\":51.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":13.57},{\"duration\":4,\"tweenEasing\":0,\"rotate\":27.35},{\"duration\":5,\"tweenEasing\":0,\"rotate\":3.06},{\"duration\":0,\"rotate\":-0.06}],\"scaleFrame\":[{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.91},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.91},{\"duration\":10,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":10,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":5,\"tweenEasing\":0,\"x\":0.96,\"y\":0.86},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96,\"y\":0.83},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":0.82},{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.76},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93,\"y\":0.75},{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.75},{\"duration\":4,\"tweenEasing\":0,\"y\":0.97},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":5,\"tweenEasing\":0,\"x\":1.02,\"y\":1.02},{\"duration\":0,\"x\":1.01,\"y\":1.02}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":4,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":23,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.01},{\"duration\":16,\"x\":0.01}],\"rotateFrame\":[{\"duration\":4,\"tweenEasing\":0,\"rotate\":4.42},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.72},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.51},{\"tweenEasing\":0,\"rotate\":9.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.71},{\"duration\":10,\"tweenEasing\":0,\"rotate\":11.52},{\"duration\":10,\"tweenEasing\":0,\"rotate\":25.31},{\"duration\":5,\"tweenEasing\":0,\"rotate\":20.24},{\"duration\":2,\"tweenEasing\":0,\"rotate\":29.56},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.39},{\"duration\":3,\"tweenEasing\":0,\"rotate\":27.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-4.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-52.41},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-105.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-81.38},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-80.53},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-79.97},{\"duration\":0,\"rotate\":-80.88}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":10,\"tweenEasing\":0},{\"duration\":10,\"tweenEasing\":0,\"x\":0.01},{\"duration\":7,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":16,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":0,\"x\":-0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.02},{\"duration\":3,\"tweenEasing\":0,\"rotate\":93.01},{\"tweenEasing\":0,\"rotate\":105.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":104.02},{\"duration\":27,\"tweenEasing\":0,\"rotate\":107.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":107.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":121.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":155.41},{\"duration\":3,\"tweenEasing\":0,\"rotate\":159.93},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-179.75},{\"duration\":12,\"rotate\":-159.98}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-9.14,\"y\":0.61},{\"duration\":4,\"tweenEasing\":0,\"x\":-16.58,\"y\":-0.55},{\"duration\":2,\"tweenEasing\":0,\"x\":-16.78,\"y\":-1.59},{\"duration\":10,\"tweenEasing\":0,\"x\":-15.62,\"y\":-0.25},{\"duration\":10,\"tweenEasing\":0,\"x\":-16.44,\"y\":0.69},{\"duration\":5,\"tweenEasing\":0,\"x\":-13.75,\"y\":-0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":-5.66,\"y\":0.3},{\"duration\":6,\"tweenEasing\":0,\"x\":-2.27,\"y\":6.86},{\"duration\":5,\"tweenEasing\":0,\"x\":0.44,\"y\":7.93},{\"duration\":16,\"tweenEasing\":0,\"x\":3.54,\"y\":12.17},{\"duration\":0,\"x\":4.14,\"y\":13.02}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.35,\"y\":-2.89},{\"duration\":3,\"tweenEasing\":0,\"x\":0.66,\"y\":-3.94},{\"tweenEasing\":0,\"x\":0.86,\"y\":-2.65},{\"duration\":2,\"tweenEasing\":0,\"x\":1.14,\"y\":-2.48},{\"duration\":10,\"tweenEasing\":0,\"x\":1.27,\"y\":-2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.19,\"y\":-2.51},{\"duration\":5,\"tweenEasing\":0,\"x\":1.51,\"y\":-3.51},{\"duration\":2,\"tweenEasing\":0,\"x\":1.57,\"y\":-3.25},{\"duration\":3,\"tweenEasing\":0,\"x\":1.55,\"y\":-2.85},{\"duration\":3,\"tweenEasing\":0,\"x\":0.72,\"y\":-1.7},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.09,\"y\":-2.67},{\"duration\":3,\"tweenEasing\":0,\"x\":0.79,\"y\":-4.22},{\"duration\":4,\"tweenEasing\":0,\"x\":2.11,\"y\":-4.38},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93,\"y\":-4.52},{\"duration\":4,\"tweenEasing\":0,\"x\":1.04,\"y\":-4.38},{\"duration\":5,\"tweenEasing\":0,\"x\":1.3,\"y\":-4.05},{\"duration\":0,\"x\":1.36,\"y\":-3.69}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":-44.61},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-48.38},{\"tweenEasing\":0,\"rotate\":-43.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-43.35},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-54.15},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-64.69},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-42.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-29.05},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":2},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.27},{\"duration\":3,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":4,\"tweenEasing\":0,\"rotate\":71.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":61.96},{\"duration\":4,\"tweenEasing\":0,\"rotate\":63.96},{\"duration\":5,\"tweenEasing\":0,\"rotate\":67.22},{\"duration\":0,\"rotate\":63.46}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":16,\"x\":1.02,\"y\":0.99}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":-0.35,\"y\":2.85},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.32,\"y\":4.22},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.64,\"y\":3.87},{\"tweenEasing\":0,\"x\":-1.17,\"y\":3.12},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.12,\"y\":2.45},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.24,\"y\":1.98},{\"duration\":10,\"tweenEasing\":0,\"x\":-1.16,\"y\":2.48},{\"duration\":5,\"tweenEasing\":0,\"x\":-1.47,\"y\":3.46},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.54,\"y\":3.21},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.52,\"y\":2.82},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":1.35},{\"duration\":2,\"tweenEasing\":0,\"x\":0.09,\"y\":2.61},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.91,\"y\":3.82},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.08,\"y\":4.29},{\"duration\":3,\"tweenEasing\":0,\"x\":-2.18,\"y\":3.8},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.69,\"y\":3.67},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.67,\"y\":3.66},{\"duration\":0,\"x\":-1.32,\"y\":3.62}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-23.85},{\"duration\":5,\"tweenEasing\":0,\"rotate\":39},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.78},{\"tweenEasing\":0,\"rotate\":12.3},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.83},{\"duration\":10,\"tweenEasing\":0,\"rotate\":16.07},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":5,\"tweenEasing\":0,\"rotate\":32.36},{\"duration\":2,\"tweenEasing\":0,\"rotate\":36.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":49.37},{\"duration\":3,\"tweenEasing\":0,\"rotate\":66.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":87.74},{\"duration\":3,\"tweenEasing\":0,\"rotate\":100.55},{\"duration\":4,\"tweenEasing\":0,\"rotate\":114.09},{\"duration\":3,\"tweenEasing\":0,\"rotate\":118.87},{\"duration\":4,\"tweenEasing\":0,\"rotate\":120.64},{\"duration\":5,\"tweenEasing\":0,\"rotate\":117.35},{\"duration\":0,\"rotate\":116.86}],\"scaleFrame\":[{\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0,\"x\":0.77,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91},{\"tweenEasing\":0,\"x\":0.9},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89},{\"duration\":10,\"tweenEasing\":0,\"x\":0.87},{\"duration\":10,\"tweenEasing\":0,\"x\":0.9},{\"duration\":5,\"tweenEasing\":0,\"x\":0.86,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.89,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.81,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.91},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":4,\"tweenEasing\":0,\"x\":0.92,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.73,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.66,\"y\":1.01},{\"duration\":5,\"tweenEasing\":0,\"x\":0.82,\"y\":1.01},{\"duration\":0,\"x\":0.79,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.02},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.04},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.04},{\"duration\":4,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":5,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.06},{\"duration\":0,\"x\":0.02,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":31.33},{\"duration\":3,\"tweenEasing\":0,\"rotate\":45.37},{\"tweenEasing\":0,\"rotate\":32.33},{\"duration\":2,\"tweenEasing\":0,\"rotate\":30.83},{\"duration\":10,\"tweenEasing\":0,\"rotate\":51.13},{\"duration\":10,\"tweenEasing\":0,\"rotate\":64.19},{\"duration\":5,\"tweenEasing\":0,\"rotate\":57.91},{\"duration\":2,\"tweenEasing\":0,\"rotate\":66.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":78.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":63.48},{\"duration\":2,\"tweenEasing\":0,\"rotate\":50.96},{\"duration\":3,\"tweenEasing\":0,\"rotate\":43.38},{\"duration\":4,\"tweenEasing\":0,\"rotate\":39.35},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.56},{\"duration\":4,\"tweenEasing\":0,\"rotate\":15.28},{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.01},{\"duration\":0,\"rotate\":16.53}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":10,\"tweenEasing\":0,\"x\":1.02},{\"duration\":10,\"tweenEasing\":0,\"x\":1.03},{\"duration\":5,\"tweenEasing\":0,\"x\":1.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.04},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05},{\"duration\":5,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":0,\"x\":1.05}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.05,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.05,\"y\":-0.07},{\"duration\":10,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.05},{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.12},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.06},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.05,\"y\":-0.07},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.05,\"y\":-0.04},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.08},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.07},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.05},{\"duration\":0,\"x\":-0.05,\"y\":-0.06}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":41.36},{\"duration\":5,\"tweenEasing\":0,\"rotate\":16.91},{\"duration\":3,\"tweenEasing\":0,\"rotate\":40.79},{\"tweenEasing\":0,\"rotate\":14.94},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.91},{\"duration\":10,\"tweenEasing\":0,\"rotate\":24.2},{\"duration\":10,\"tweenEasing\":0,\"rotate\":45.3},{\"duration\":5,\"tweenEasing\":0,\"rotate\":8.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.24},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.05},{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":16.24},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.93},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-6.36},{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.85},{\"duration\":4,\"tweenEasing\":0,\"rotate\":10.27},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.17},{\"duration\":0,\"rotate\":-6.69}],\"scaleFrame\":[{\"tweenEasing\":0,\"x\":0.95},{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":10,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.05,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":0.99},{\"duration\":5,\"x\":1.03}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.01},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.21,\"y\":-0.06},{\"duration\":10,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.04},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.21},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.21,\"y\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.26,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.25,\"y\":0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.18,\"y\":0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.01},{\"duration\":5,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.03},{\"duration\":0,\"x\":-0.22,\"y\":0.01}],\"rotateFrame\":[{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":3.76},{\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.03},{\"duration\":10,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":10,\"tweenEasing\":0,\"rotate\":0.75},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-15.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":27.29},{\"duration\":3,\"tweenEasing\":0,\"rotate\":49.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":65.14},{\"duration\":3,\"tweenEasing\":0,\"rotate\":51.39},{\"duration\":4,\"tweenEasing\":0,\"rotate\":12.5},{\"duration\":3,\"tweenEasing\":0,\"rotate\":53.41},{\"duration\":4,\"tweenEasing\":0,\"rotate\":38.58},{\"duration\":5,\"tweenEasing\":0,\"rotate\":35.06},{\"duration\":0,\"rotate\":35.57}],\"scaleFrame\":[{\"duration\":32,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.92},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":0,\"y\":0.99}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"tweenEasing\":0,\"x\":1.51,\"y\":-0.15},{\"duration\":5,\"tweenEasing\":0,\"x\":1.38,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.19},{\"tweenEasing\":0,\"x\":1.43,\"y\":-0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":1.44,\"y\":-0.2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.41,\"y\":-0.2},{\"duration\":10,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.2},{\"duration\":5,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.43,\"y\":-0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.39,\"y\":-0.16},{\"duration\":2,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.13},{\"duration\":4,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.14},{\"duration\":3,\"tweenEasing\":0,\"x\":1.42,\"y\":-0.12},{\"duration\":4,\"tweenEasing\":0,\"x\":1.4,\"y\":-0.11},{\"duration\":5,\"tweenEasing\":0,\"x\":1.37,\"y\":-0.12},{\"duration\":0,\"x\":1.38,\"y\":-0.1}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-17.55},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-55.87},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-34.03},{\"tweenEasing\":0,\"rotate\":-27.28},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-26.79},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-40.34},{\"duration\":10,\"tweenEasing\":0,\"rotate\":-43.84},{\"duration\":5,\"tweenEasing\":0,\"rotate\":-40.58},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.58},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.01},{\"duration\":3,\"tweenEasing\":0,\"rotate\":25.82},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.52},{\"duration\":3,\"tweenEasing\":0,\"rotate\":1.76},{\"duration\":4,\"tweenEasing\":0,\"rotate\":5.03},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-6.71},{\"duration\":4,\"tweenEasing\":0,\"rotate\":13.13},{\"duration\":5,\"tweenEasing\":0,\"rotate\":1.29},{\"duration\":0,\"rotate\":2.29}],\"scaleFrame\":[{\"duration\":32,\"tweenEasing\":0},{\"duration\":5,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":8,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":5,\"x\":1.03,\"y\":0.99}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":66,\"value\":-1}]}]},{\"duration\":14,\"fadeInTime\":0.2,\"name\":\"Atk1\",\"frame\":[{\"duration\":4},{\"duration\":0,\"sound\":\"200025\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.29,\"y\":0.01},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0,\"x\":0.2,\"y\":-0.1}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-5.75},{\"tweenEasing\":0,\"rotate\":0.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.3},{\"duration\":4,\"tweenEasing\":0,\"rotate\":24.3},{\"duration\":0,\"rotate\":17.78}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":0.99},{\"duration\":2,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":0.96}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.21},{\"tweenEasing\":0,\"x\":-0.16,\"y\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.29,\"y\":0.58},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.68},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.3,\"y\":0.59},{\"duration\":0,\"x\":-0.23,\"y\":0.36}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.96},{\"tweenEasing\":0,\"rotate\":7.79},{\"duration\":2,\"tweenEasing\":0,\"rotate\":10.03},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.45},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.75},{\"duration\":0,\"rotate\":1.89}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.25,\"y\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":1.89,\"y\":0.04},{\"tweenEasing\":0,\"x\":1.32,\"y\":1.4},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.3,\"y\":4.43},{\"duration\":4,\"x\":-0.3,\"y\":4.43},{\"duration\":0,\"x\":1.2,\"y\":6.31}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":-129.6},{\"duration\":3,\"tweenEasing\":0,\"rotate\":167.8},{\"tweenEasing\":0,\"rotate\":176.6},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-74.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-56.5},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-60.7},{\"duration\":0,\"rotate\":-54.25}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.34,\"y\":-0.34},{\"tweenEasing\":0,\"x\":-1.39,\"y\":-5.16},{\"duration\":2,\"tweenEasing\":0,\"x\":4.2,\"y\":-17.25},{\"duration\":2,\"tweenEasing\":0,\"x\":3.45,\"y\":-17.67},{\"duration\":4,\"x\":3.47,\"y\":-17.23},{\"duration\":0,\"x\":3.77,\"y\":-12.36}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-48.37},{\"tweenEasing\":0,\"rotate\":1.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":24.73},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.04},{\"duration\":0,\"rotate\":13.44}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.99},{\"tweenEasing\":0,\"x\":0.67},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.06},{\"duration\":4,\"tweenEasing\":0,\"x\":1.06},{\"duration\":0,\"x\":1.04}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.17,\"y\":0.16},{\"tweenEasing\":0,\"x\":0.24,\"y\":-0.05},{\"duration\":2,\"tweenEasing\":0,\"x\":0.64,\"y\":-0.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.59,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":0.59,\"y\":-0.04},{\"duration\":0,\"x\":0.32,\"y\":1.15}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":12.19},{\"tweenEasing\":0,\"rotate\":-34.07},{\"duration\":2,\"tweenEasing\":0,\"rotate\":5.44},{\"duration\":2,\"tweenEasing\":0,\"rotate\":28.28},{\"duration\":4,\"tweenEasing\":0,\"rotate\":24.27},{\"duration\":0,\"rotate\":1.22}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.78,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.25,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.13,\"y\":1.01},{\"duration\":0,\"x\":1.15,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":0.87,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":0.88,\"y\":0.13},{\"tweenEasing\":0,\"x\":1.07,\"y\":0.14},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.25},{\"duration\":2,\"tweenEasing\":0,\"x\":1.16,\"y\":0.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.08,\"y\":0.23},{\"duration\":0,\"x\":0.2,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.78},{\"tweenEasing\":0,\"rotate\":-15.8},{\"duration\":2,\"tweenEasing\":0,\"rotate\":0.41},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.66},{\"duration\":4,\"tweenEasing\":0,\"rotate\":14.63},{\"duration\":0,\"rotate\":2.97}],\"scaleFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":0,\"x\":1.02}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":-0.07},{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.07},{\"tweenEasing\":0,\"x\":0.19,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":0.06},{\"duration\":4,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.02},{\"duration\":0,\"x\":-0.55,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.76},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.75},{\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":76.22},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.71},{\"duration\":4,\"tweenEasing\":0,\"rotate\":41.93},{\"duration\":0,\"rotate\":38.08}],\"scaleFrame\":[{\"duration\":2,\"tweenEasing\":0,\"x\":1.17},{\"duration\":3,\"tweenEasing\":0,\"x\":1.17},{\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.17},{\"tweenEasing\":0,\"x\":-0.1,\"y\":0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.59,\"y\":-0.13},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.74,\"y\":-0.17},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.7,\"y\":-0.17},{\"duration\":0,\"x\":-3,\"y\":-0.12}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-2.57},{\"tweenEasing\":0,\"rotate\":4.32},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-19.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-14.64},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.79},{\"duration\":0,\"rotate\":14.44}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"y\":0.96},{\"tweenEasing\":0,\"y\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.07,\"y\":1.19},{\"duration\":4,\"tweenEasing\":0,\"x\":1.02,\"y\":1.05},{\"duration\":0,\"x\":1.02,\"y\":1.03}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":0,\"x\":0.01,\"y\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":3.1},{\"tweenEasing\":0,\"rotate\":32.41},{\"duration\":2,\"tweenEasing\":0,\"rotate\":6.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-13.06},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-13.08},{\"duration\":0,\"rotate\":-8.52}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":2,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":2,\"tweenEasing\":0,\"rotate\":-96.78},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-156.22},{\"tweenEasing\":0,\"clockwise\":1,\"rotate\":-179.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":38.81},{\"duration\":2,\"tweenEasing\":0,\"rotate\":39.31},{\"duration\":4,\"tweenEasing\":0,\"rotate\":29.29},{\"duration\":0,\"rotate\":15.52}]},{\"name\":\"effect_r\",\"translateFrame\":[{\"duration\":12},{\"tweenEasing\":0,\"x\":23.95,\"y\":-15.22},{\"x\":40.96,\"y\":-23.57}],\"rotateFrame\":[{\"duration\":12},{\"tweenEasing\":0,\"rotate\":-9.42},{\"rotate\":-15.64}],\"scaleFrame\":[{\"duration\":11},{\"tweenEasing\":0,\"x\":1.21,\"y\":1.22},{\"tweenEasing\":0},{\"x\":0.7,\"y\":0.7}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":3.76,\"y\":-0.07},{\"tweenEasing\":0,\"x\":1.45,\"y\":3.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.54,\"y\":4.31},{\"duration\":4,\"tweenEasing\":0,\"x\":1,\"y\":4.59},{\"duration\":0,\"x\":0.67,\"y\":3.07}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.14,\"y\":0.38},{\"tweenEasing\":0,\"x\":1.11,\"y\":-3.46},{\"duration\":2,\"tweenEasing\":0,\"x\":2.01,\"y\":-7.84},{\"duration\":2,\"tweenEasing\":0,\"x\":2.72,\"y\":-8.01},{\"duration\":4,\"tweenEasing\":0,\"x\":2.67,\"y\":-7.55},{\"duration\":0,\"x\":1.77,\"y\":-5.04}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":4.5},{\"tweenEasing\":0,\"rotate\":-0.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":27.82},{\"duration\":2,\"tweenEasing\":0,\"rotate\":29.32},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.56},{\"duration\":0,\"rotate\":17.58}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.98}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.14,\"y\":-0.41},{\"tweenEasing\":0,\"x\":-1.09,\"y\":3.38},{\"duration\":2,\"tweenEasing\":0,\"x\":-1.98,\"y\":7.68},{\"duration\":2,\"tweenEasing\":0,\"x\":-2.11,\"y\":7.9},{\"duration\":4,\"tweenEasing\":0,\"x\":-2.64,\"y\":7.4},{\"duration\":0,\"x\":-1.77,\"y\":4.93}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":15.06},{\"tweenEasing\":0,\"rotate\":-33.12},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-10.04},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-7.03},{\"duration\":0,\"rotate\":-4.75}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.96,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":8,\"x\":0.98,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.01},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":0,\"x\":0.07,\"y\":-1.21}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.3},{\"tweenEasing\":0,\"rotate\":39.9},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":22.62},{\"duration\":4,\"tweenEasing\":0,\"rotate\":26.38},{\"duration\":0,\"rotate\":25.1}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.05,\"y\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03,\"y\":0.01},{\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.01},{\"duration\":0,\"x\":-0.03}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":5.94},{\"tweenEasing\":0,\"rotate\":32.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-32.11},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-32.11},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-32.1},{\"duration\":0,\"rotate\":-21.33}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.96},{\"tweenEasing\":0,\"x\":0.93},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.21},{\"duration\":0,\"x\":1.14}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.19,\"y\":-0.02},{\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.22,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.22,\"y\":0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.22},{\"duration\":0,\"x\":-0.27,\"y\":0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-4.04},{\"tweenEasing\":0,\"rotate\":-35.15},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-47.69},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-52.7},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-54.2},{\"duration\":0,\"rotate\":-43.45}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01},{\"tweenEasing\":0,\"x\":1.01},{\"duration\":8}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.07,\"y\":0.02},{\"tweenEasing\":0,\"x\":1.55,\"y\":-0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":1.48,\"y\":-0.05},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.08,\"y\":-0.06},{\"duration\":0,\"x\":-0.42,\"y\":-0.31}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-21.05},{\"tweenEasing\":0,\"rotate\":0.19},{\"duration\":2,\"tweenEasing\":0,\"rotate\":42.16},{\"duration\":2,\"tweenEasing\":0,\"rotate\":42.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":39.26},{\"duration\":0,\"rotate\":26.17}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":6,\"value\":-1},{\"duration\":8}],\"colorFrame\":[{\"duration\":6},{\"duration\":5},{\"value\":{\"aM\":62}},{\"value\":{\"aM\":23}},{\"value\":{\"aM\":6}}]}]},{\"duration\":48,\"fadeInTime\":0.2,\"name\":\"Atk3\",\"frame\":[{\"duration\":33},{\"sound\":\"200029\"},{\"duration\":0,\"events\":[{\"name\":\"onTimeStart\"}]}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":35,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.36,\"y\":-0.14},{\"duration\":3,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":23.05},{\"duration\":31,\"tweenEasing\":0,\"rotate\":7.25},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.53},{\"duration\":2,\"tweenEasing\":0,\"rotate\":23.8},{\"duration\":4,\"tweenEasing\":0,\"rotate\":49.66},{\"duration\":3,\"tweenEasing\":0,\"rotate\":39.11},{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.81},{\"duration\":0,\"rotate\":12.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":0,\"x\":0.99}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.15,\"y\":0.08},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.16},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.24,\"y\":1.07},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.28,\"y\":-0.38},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.8,\"y\":-1.94},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.88,\"y\":-2.45},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.55,\"y\":-2.06},{\"duration\":0,\"x\":-0.14,\"y\":-1.07}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.69},{\"duration\":31,\"tweenEasing\":0,\"rotate\":-3.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":1.59},{\"duration\":2,\"tweenEasing\":0,\"rotate\":47.72},{\"duration\":4,\"tweenEasing\":0,\"rotate\":23.57},{\"duration\":3,\"tweenEasing\":0,\"rotate\":30.93},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.58},{\"duration\":0,\"rotate\":11.3}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":0,\"x\":0.99}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-2.16,\"y\":6.54},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.78,\"y\":6.22},{\"duration\":29,\"tweenEasing\":0,\"x\":-1.47,\"y\":6.73},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.62,\"y\":7.1},{\"duration\":2,\"tweenEasing\":0,\"x\":-3.24,\"y\":11.37},{\"duration\":4,\"tweenEasing\":0,\"x\":-3.25,\"y\":11.5},{\"duration\":3,\"tweenEasing\":0,\"x\":-3.43,\"y\":10.87},{\"duration\":3,\"tweenEasing\":0,\"x\":-1.26,\"y\":7.59},{\"duration\":0,\"x\":-0.88,\"y\":6.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-32.21},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-26.21},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-56.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-179.92},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-100.73},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-102.06},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-113.23},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-70.65},{\"duration\":0,\"rotate\":-31.81}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":4.9,\"y\":-9.52},{\"duration\":2,\"tweenEasing\":0,\"x\":2.89,\"y\":-7.56},{\"duration\":29,\"tweenEasing\":0,\"x\":2.64,\"y\":-7.28},{\"duration\":2,\"tweenEasing\":0,\"x\":1.37,\"y\":-7.87},{\"duration\":2,\"tweenEasing\":0,\"x\":4.56,\"y\":-11.44},{\"duration\":4,\"tweenEasing\":0,\"x\":3.7,\"y\":-11.38},{\"duration\":3,\"tweenEasing\":0,\"x\":4.77,\"y\":-11.2},{\"duration\":3,\"tweenEasing\":0,\"x\":4.44,\"y\":-9.48},{\"duration\":0,\"x\":2.47,\"y\":-6.28}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-2.11},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7.16},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-40.37},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-126.51},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-54.13},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-56.46},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-59.88},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-43.84},{\"duration\":0,\"rotate\":-21.78}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96},{\"duration\":0,\"x\":0.99}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.76,\"y\":-0.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.81},{\"duration\":29,\"tweenEasing\":0,\"x\":0.79,\"y\":0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":-0.19},{\"duration\":2,\"tweenEasing\":0,\"x\":0.75,\"y\":-0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.71,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.71,\"y\":0.02},{\"duration\":3,\"tweenEasing\":0,\"x\":0.73,\"y\":-0.01},{\"duration\":0,\"x\":0.28}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-10.87},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-22.37},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-31.14},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-41.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-36.65},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-42.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-37.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.03},{\"duration\":0,\"rotate\":-2.51}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.91,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":29,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":4,\"tweenEasing\":0,\"x\":1.03},{\"duration\":3,\"tweenEasing\":0,\"x\":1.02},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.1,\"y\":0.18},{\"duration\":2,\"tweenEasing\":0,\"x\":0.85,\"y\":0.22},{\"duration\":29,\"tweenEasing\":0,\"x\":0.25,\"y\":0.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.33,\"y\":0.2},{\"duration\":2,\"tweenEasing\":0,\"x\":1.22,\"y\":0.18},{\"duration\":4,\"tweenEasing\":0,\"x\":1.17,\"y\":0.18},{\"duration\":3,\"tweenEasing\":0,\"x\":1.21,\"y\":0.16},{\"duration\":3,\"tweenEasing\":0,\"x\":1.24,\"y\":0.21},{\"duration\":0,\"x\":1.03,\"y\":0.18}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-5.79},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-33.15},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-45.42},{\"duration\":2,\"tweenEasing\":0,\"rotate\":12.03},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.34},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-0.79},{\"duration\":3,\"tweenEasing\":0,\"rotate\":6.95},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-7.3},{\"duration\":0,\"rotate\":-9.52}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.93,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":0,\"x\":1.02,\"y\":0.99}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.1,\"y\":-0.05},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.24},{\"duration\":29,\"tweenEasing\":0,\"x\":0.37,\"y\":-0.22},{\"duration\":2,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":0.2,\"y\":-0.07},{\"duration\":4,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.16,\"y\":-0.05},{\"duration\":3,\"tweenEasing\":0,\"x\":0.15,\"y\":-0.02},{\"duration\":0,\"x\":0.09,\"y\":-0.05}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":12.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":18.07},{\"duration\":29,\"tweenEasing\":0,\"rotate\":18.27},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-6.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":48.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":3,\"tweenEasing\":0,\"rotate\":44.89},{\"duration\":3,\"tweenEasing\":0,\"rotate\":46.12},{\"duration\":0,\"rotate\":34.82}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":1.03,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":4,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"x\":0.98}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.19},{\"duration\":29,\"tweenEasing\":0,\"x\":-0.01,\"y\":0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.34,\"y\":0.28},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.03,\"y\":0.14},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.12},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.13},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":0.11},{\"duration\":0,\"y\":0.06}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":11.13},{\"duration\":2,\"tweenEasing\":0,\"rotate\":14.81},{\"duration\":29,\"tweenEasing\":0,\"rotate\":13.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.66},{\"duration\":2,\"tweenEasing\":0,\"rotate\":51.14},{\"duration\":4,\"tweenEasing\":0,\"rotate\":57.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":59.68},{\"duration\":3,\"tweenEasing\":0,\"rotate\":39.57},{\"duration\":0,\"rotate\":19.81}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98,\"y\":0.93},{\"duration\":2,\"tweenEasing\":0,\"y\":1.01},{\"duration\":29,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.11,\"y\":1.34},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":3,\"tweenEasing\":0,\"y\":0.98},{\"duration\":0,\"x\":1.01,\"y\":0.99}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":29,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":4,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0,\"x\":0.01,\"y\":0.02}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":21.59},{\"duration\":2,\"tweenEasing\":0,\"rotate\":19.03},{\"duration\":29,\"tweenEasing\":0,\"rotate\":16.97},{\"duration\":2,\"tweenEasing\":0,\"rotate\":13.9},{\"duration\":6,\"tweenEasing\":0,\"rotate\":18.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":18.48},{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.86},{\"duration\":0,\"rotate\":9.1}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":29,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.01},{\"duration\":0,\"y\":0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":31.29},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-28.61},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-69.47},{\"duration\":2,\"tweenEasing\":0,\"rotate\":176.49},{\"duration\":2,\"tweenEasing\":0,\"rotate\":21.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":22.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":22.28},{\"duration\":3,\"tweenEasing\":0,\"rotate\":28.28},{\"duration\":0,\"rotate\":32.29}]},{\"name\":\"effect_r\",\"translateFrame\":[{\"duration\":5,\"x\":-26.3,\"y\":-41.21},{\"duration\":28,\"tweenEasing\":0,\"x\":-26.3,\"y\":-41.21},{\"duration\":3,\"x\":-26.78,\"y\":-51.93},{\"duration\":4,\"tweenEasing\":0,\"x\":-1.03,\"y\":1.03},{\"duration\":3,\"x\":-1.03,\"y\":1.03},{\"tweenEasing\":0,\"x\":10.17,\"y\":6.63},{\"duration\":4,\"x\":30.97,\"y\":5.03}],\"rotateFrame\":[{\"duration\":33,\"rotate\":35.08},{\"duration\":3,\"rotate\":35.08},{\"duration\":12,\"rotate\":7.52}],\"scaleFrame\":[{\"duration\":33,\"x\":0.18,\"y\":0.16},{\"duration\":3,\"x\":0.18,\"y\":0.16},{\"duration\":4,\"tweenEasing\":0,\"x\":1.21,\"y\":1.09},{\"duration\":2,\"x\":1.68,\"y\":1.51},{\"tweenEasing\":0,\"x\":1.87,\"y\":1.68},{\"tweenEasing\":0,\"x\":1.63,\"y\":1.47},{\"duration\":4,\"x\":0.93,\"y\":0.84}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-3.02,\"y\":5.91},{\"duration\":31,\"tweenEasing\":0,\"x\":6.06,\"y\":-12.9},{\"duration\":2,\"tweenEasing\":0,\"x\":7.94,\"y\":-22.23},{\"duration\":2,\"tweenEasing\":0,\"x\":2.9,\"y\":6.9},{\"duration\":7,\"tweenEasing\":0,\"x\":2.76,\"y\":6.68},{\"duration\":3,\"tweenEasing\":0,\"x\":2.3,\"y\":6.53},{\"duration\":0,\"x\":1.15,\"y\":3.27}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.76,\"y\":-2.17},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.6,\"y\":-2.49},{\"duration\":2,\"tweenEasing\":0,\"x\":0.34,\"y\":-3.43},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":-3.12},{\"duration\":4,\"tweenEasing\":0,\"x\":1.01,\"y\":-3.39},{\"duration\":3,\"tweenEasing\":0,\"x\":2.54,\"y\":-3.36},{\"duration\":3,\"tweenEasing\":0,\"x\":0.96,\"y\":-3.47},{\"duration\":0,\"x\":-0.89,\"y\":-1.82}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-63.19},{\"duration\":31,\"tweenEasing\":0,\"rotate\":-33.31},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.76},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.5},{\"duration\":4,\"tweenEasing\":0,\"rotate\":1},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.59},{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.01},{\"duration\":0,\"rotate\":5.51}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":31,\"tweenEasing\":0,\"x\":0.98,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9},{\"duration\":4,\"tweenEasing\":0,\"x\":0.91},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":3,\"tweenEasing\":0,\"x\":0.84},{\"duration\":0,\"x\":0.92}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.74,\"y\":2.15},{\"duration\":2,\"tweenEasing\":0,\"x\":0.6,\"y\":2.43},{\"duration\":29,\"tweenEasing\":0,\"x\":-1.05,\"y\":1.09},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.33,\"y\":3.36},{\"duration\":2,\"tweenEasing\":0,\"x\":-1,\"y\":3.07},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.98,\"y\":3.3},{\"duration\":3,\"tweenEasing\":0,\"x\":0.2,\"y\":3.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.93,\"y\":3.4},{\"duration\":0,\"x\":-0.48,\"y\":1.71}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-43.89},{\"duration\":2,\"tweenEasing\":0,\"rotate\":37.86},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-63.16},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-39.39},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-61.15},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-63.15},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-78.7},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-66.92},{\"duration\":0,\"rotate\":-33.58}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":29,\"tweenEasing\":0,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02,\"y\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9,\"y\":1.01},{\"duration\":4,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":3,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.04},{\"duration\":31,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":0.14,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.02},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.03},{\"duration\":0,\"x\":0.01,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":97.06},{\"duration\":31,\"tweenEasing\":0,\"rotate\":81.5},{\"duration\":2,\"tweenEasing\":0,\"rotate\":11.26},{\"duration\":2,\"tweenEasing\":0,\"rotate\":58.17},{\"duration\":4,\"tweenEasing\":0,\"rotate\":56.18},{\"duration\":3,\"tweenEasing\":0,\"rotate\":65.16},{\"duration\":3,\"tweenEasing\":0,\"rotate\":48.14},{\"duration\":0,\"rotate\":13.54}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":31,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99},{\"duration\":4,\"tweenEasing\":0,\"x\":0.99},{\"duration\":3,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"duration\":3,\"tweenEasing\":0,\"x\":0.93},{\"duration\":0,\"x\":0.95,\"y\":0.99}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.02},{\"duration\":29,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.1},{\"duration\":2,\"tweenEasing\":0,\"x\":0.04,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.1},{\"duration\":4,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.08},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":0,\"x\":-0.95}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":17.05},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-17.87},{\"duration\":29,\"tweenEasing\":0,\"rotate\":103.48},{\"duration\":2,\"tweenEasing\":0,\"rotate\":56.4},{\"duration\":2,\"tweenEasing\":0,\"rotate\":68.88},{\"duration\":4,\"tweenEasing\":0,\"rotate\":69.4},{\"duration\":3,\"tweenEasing\":0,\"rotate\":82.2},{\"duration\":3,\"tweenEasing\":0,\"rotate\":71.17},{\"duration\":0,\"rotate\":35.8}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":29,\"tweenEasing\":0,\"x\":0.94,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96},{\"duration\":2,\"tweenEasing\":0,\"x\":0.77},{\"duration\":4,\"tweenEasing\":0,\"x\":0.81},{\"duration\":3,\"tweenEasing\":0,\"x\":0.85},{\"duration\":3,\"tweenEasing\":0,\"x\":1.04},{\"duration\":0,\"x\":0.94}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.02,\"y\":-0.02},{\"duration\":31,\"tweenEasing\":0,\"x\":-0.06,\"y\":-0.06},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.02,\"y\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.2},{\"duration\":4,\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.03},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.19},{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":0,\"x\":0.03,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-33.88},{\"duration\":31,\"tweenEasing\":0,\"rotate\":13},{\"duration\":2,\"tweenEasing\":0,\"rotate\":43.62},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-56.95},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-56.21},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-62.46},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-51.69},{\"duration\":0,\"rotate\":-17.16}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":31,\"tweenEasing\":0,\"x\":1.01,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.96,\"y\":0.99},{\"duration\":12}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":0.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.61,\"y\":-0.08},{\"duration\":29,\"tweenEasing\":0,\"x\":1.84,\"y\":-0.11},{\"duration\":2,\"tweenEasing\":0,\"x\":1.76,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":1.61,\"y\":-0.01},{\"duration\":4,\"tweenEasing\":0,\"x\":1.6,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"x\":1.58,\"y\":-0.01},{\"duration\":3,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0,\"x\":0.72,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":26.83},{\"duration\":2,\"tweenEasing\":0,\"rotate\":8.27},{\"duration\":29,\"tweenEasing\":0,\"rotate\":-20.08},{\"duration\":2,\"tweenEasing\":0,\"rotate\":4.75},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-7.97},{\"duration\":4,\"tweenEasing\":0,\"rotate\":-6.42},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-3.63},{\"duration\":3,\"tweenEasing\":0,\"rotate\":-4.23},{\"duration\":0,\"rotate\":-2.27}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"y\":0.99},{\"duration\":29,\"tweenEasing\":0,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.99,\"y\":0.99},{\"duration\":12}]}],\"slot\":[{\"name\":\"effect_r\",\"colorFrame\":[{\"duration\":34,\"value\":{\"aM\":0}},{\"duration\":2,\"value\":{\"aM\":0}},{\"duration\":5},{},{\"value\":{\"aM\":44}},{\"duration\":2,\"value\":{\"aM\":10}},{\"duration\":3,\"value\":{\"aM\":6}}]}]},{\"duration\":14,\"fadeInTime\":0.2,\"name\":\"Atk2\",\"frame\":[{\"duration\":5},{\"duration\":0,\"sound\":\"200026\"}],\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.03,\"y\":0.01},{\"duration\":7}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-0.25},{\"tweenEasing\":0,\"rotate\":-0.25},{\"tweenEasing\":0,\"rotate\":-1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-1.5},{\"duration\":0,\"rotate\":-0.25}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0},{\"duration\":7,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0,\"x\":1.01}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.11,\"y\":0.14},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.33},{\"duration\":0,\"x\":-0.1,\"y\":0.27}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":10.32},{\"tweenEasing\":0,\"rotate\":10.32},{\"tweenEasing\":0,\"rotate\":-1.49},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-0.49},{\"duration\":0,\"rotate\":-0.3}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":1.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.94},{\"duration\":0,\"x\":0.96}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":-0.76},{\"tweenEasing\":0,\"x\":0.16,\"y\":-0.38},{\"tweenEasing\":0,\"x\":-0.99,\"y\":5.26},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.51,\"y\":17.06},{\"duration\":0,\"x\":-0.41,\"y\":16.28}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":44.91},{\"tweenEasing\":0,\"rotate\":45.66},{\"tweenEasing\":0,\"rotate\":61.1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-91.96},{\"duration\":0,\"rotate\":-79.76}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.35,\"y\":-0.86},{\"tweenEasing\":0,\"x\":0.45,\"y\":-0.79},{\"tweenEasing\":0,\"x\":1.88,\"y\":-6.43},{\"duration\":7,\"tweenEasing\":0,\"x\":3.48,\"y\":-19.49},{\"duration\":0,\"x\":3.13,\"y\":-18.3}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-19.79},{\"tweenEasing\":0,\"rotate\":-18.04},{\"tweenEasing\":0,\"rotate\":23.73},{\"duration\":7,\"tweenEasing\":0,\"rotate\":44.71},{\"duration\":0,\"rotate\":42.09}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.97,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.98},{\"tweenEasing\":0,\"x\":0.96},{\"duration\":7,\"tweenEasing\":0,\"x\":1.05},{\"duration\":0,\"x\":1.02}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.8},{\"tweenEasing\":0,\"x\":0.77,\"y\":0.01},{\"tweenEasing\":0,\"x\":0.74,\"y\":-0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":0.72,\"y\":-0.07},{\"duration\":0,\"x\":0.69,\"y\":-0.14}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-0.8},{\"tweenEasing\":0,\"rotate\":-8.57},{\"tweenEasing\":0,\"rotate\":-24.34},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-18.82},{\"duration\":0,\"rotate\":-26.6}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.93,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.84,\"y\":1.01},{\"duration\":0,\"x\":0.85,\"y\":1.01}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.13,\"y\":-0.04},{\"tweenEasing\":0,\"x\":0.18,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.92,\"y\":0.12},{\"duration\":7,\"tweenEasing\":0,\"x\":1.21,\"y\":0.22},{\"duration\":0,\"x\":1.24,\"y\":0.19}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-22.9},{\"tweenEasing\":0,\"rotate\":-10.41},{\"tweenEasing\":0,\"rotate\":-62.21},{\"duration\":7,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":0,\"rotate\":2.22}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.02},{\"duration\":0,\"x\":1.02,\"y\":1.01}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.03},{\"tweenEasing\":0,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.1,\"y\":-0.02},{\"duration\":7,\"tweenEasing\":0,\"x\":0.19,\"y\":-0.08},{\"duration\":0,\"x\":0.16,\"y\":-0.04}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-22.03},{\"tweenEasing\":0,\"rotate\":-22.3},{\"tweenEasing\":0,\"rotate\":3.75},{\"duration\":7,\"tweenEasing\":0,\"rotate\":95.26},{\"duration\":0,\"rotate\":83.25}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":1.03},{\"tweenEasing\":0,\"x\":0.99},{\"duration\":7,\"tweenEasing\":0,\"x\":0.97},{\"duration\":0,\"x\":0.99}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.04,\"y\":0.04},{\"tweenEasing\":0,\"x\":0.02,\"y\":0.08},{\"tweenEasing\":0,\"x\":0.06,\"y\":0.16},{\"duration\":7,\"tweenEasing\":0,\"x\":0.3,\"y\":-0.05},{\"duration\":0,\"x\":0.26,\"y\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":0.5},{\"tweenEasing\":0,\"rotate\":-2.27},{\"tweenEasing\":0,\"rotate\":-12.92},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-20.48},{\"duration\":0,\"rotate\":-23.94}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":1.01,\"y\":1.02},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.03},{\"tweenEasing\":0,\"x\":0.98,\"y\":0.92},{\"duration\":7,\"tweenEasing\":0,\"x\":0.94,\"y\":0.76},{\"duration\":0,\"x\":0.96,\"y\":0.81}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0},{\"duration\":7,\"x\":0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":13.43},{\"tweenEasing\":0,\"rotate\":14.56},{\"tweenEasing\":0,\"rotate\":26.23},{\"duration\":7,\"tweenEasing\":0,\"rotate\":23.18},{\"duration\":0,\"rotate\":32.77}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0},{\"tweenEasing\":0,\"x\":-0.01},{\"tweenEasing\":0},{\"duration\":7,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":19.53},{\"tweenEasing\":0,\"rotate\":26.53},{\"tweenEasing\":0,\"rotate\":13.24},{\"duration\":7,\"tweenEasing\":0,\"rotate\":19.02},{\"duration\":0,\"rotate\":17.77}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.16,\"y\":1.7},{\"duration\":2,\"tweenEasing\":0,\"x\":0.16,\"y\":1.7},{\"duration\":7,\"x\":-0.86,\"y\":3.5}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.29,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.29,\"y\":-0.03},{\"tweenEasing\":0,\"x\":0.97,\"y\":-2.63},{\"duration\":7,\"tweenEasing\":0,\"x\":1.17,\"y\":-5.6},{\"duration\":0,\"x\":0.74,\"y\":-4.76}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-12.51},{\"tweenEasing\":0,\"rotate\":-12.51},{\"tweenEasing\":0,\"rotate\":-8.25},{\"duration\":7,\"tweenEasing\":0,\"rotate\":12.27},{\"duration\":0,\"rotate\":7.26}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.89},{\"tweenEasing\":0,\"x\":0.89},{\"tweenEasing\":0},{\"duration\":7,\"x\":1.02}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.28},{\"tweenEasing\":0,\"x\":-0.28},{\"tweenEasing\":0,\"x\":-0.9,\"y\":2.62},{\"duration\":7,\"tweenEasing\":0,\"x\":-1.15,\"y\":5.52},{\"duration\":0,\"x\":-0.73,\"y\":4.7}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-15.06},{\"tweenEasing\":0,\"rotate\":-15.06},{\"tweenEasing\":0,\"rotate\":-26.1},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-8.29},{\"duration\":0,\"rotate\":-31.37}],\"scaleFrame\":[{\"duration\":6,\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"tweenEasing\":0,\"x\":1.01,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":0.95,\"y\":1.01},{\"duration\":0,\"x\":1.01,\"y\":1.01}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.02},{\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":7,\"x\":0.05,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.5},{\"tweenEasing\":0,\"rotate\":23.5},{\"tweenEasing\":0,\"rotate\":40.63},{\"duration\":7,\"tweenEasing\":0,\"rotate\":27.65},{\"duration\":0,\"rotate\":29.9}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.94,\"y\":1.01},{\"tweenEasing\":0,\"x\":0.98,\"y\":1.01},{\"duration\":7,\"tweenEasing\":0,\"x\":1.04,\"y\":1.01},{\"duration\":0,\"x\":1.02,\"y\":1.01}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"tweenEasing\":0,\"x\":-0.03,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0},{\"duration\":0,\"x\":-0.03,\"y\":-0.02}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":23.57},{\"tweenEasing\":0,\"rotate\":23.57},{\"tweenEasing\":0,\"rotate\":17.59},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-32.13},{\"duration\":0,\"rotate\":6.8}],\"scaleFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.94},{\"tweenEasing\":0,\"x\":0.94},{\"tweenEasing\":0,\"x\":0.89},{\"duration\":7,\"tweenEasing\":0,\"x\":0.98},{\"duration\":0,\"x\":0.94}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.07},{\"tweenEasing\":0,\"x\":0.01,\"y\":-0.07},{\"tweenEasing\":0,\"x\":-0.2,\"y\":-0.05},{\"duration\":7,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.03},{\"duration\":0,\"x\":-0.17,\"y\":-0.01}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-11.03},{\"tweenEasing\":0,\"rotate\":-11.03},{\"tweenEasing\":0,\"rotate\":-32.38},{\"duration\":7,\"tweenEasing\":0,\"rotate\":-39.91},{\"duration\":0,\"rotate\":-37.15}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"x\":0.03},{\"tweenEasing\":0,\"x\":0.03},{\"tweenEasing\":0,\"x\":1.55,\"y\":-0.03},{\"duration\":7,\"tweenEasing\":0,\"x\":1.47,\"y\":-0.05},{\"duration\":0,\"x\":1.51,\"y\":-0.03}],\"rotateFrame\":[{\"duration\":5,\"tweenEasing\":0,\"rotate\":-8.55},{\"tweenEasing\":0,\"rotate\":-8.55},{\"tweenEasing\":0,\"rotate\":8.43},{\"duration\":7,\"tweenEasing\":0,\"rotate\":40.37},{\"duration\":0,\"rotate\":24.52}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":14,\"value\":-1}]}]},{\"duration\":28,\"playTimes\":0,\"fadeInTime\":0.2,\"name\":\"Idle2\",\"bone\":[{\"name\":\"pelvis\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0},{\"duration\":11,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":6},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-8},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-8.25},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-5.64},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.97},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.97},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"chest\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.05,\"y\":0.31},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03,\"y\":0.32},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":0.34},{\"duration\":6,\"tweenEasing\":0,\"x\":0.04,\"y\":0.32},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.13,\"y\":0.07},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":2.34},{\"duration\":11,\"tweenEasing\":0,\"rotate\":7.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":7.26},{\"duration\":6,\"tweenEasing\":0,\"rotate\":5.79},{\"duration\":6,\"tweenEasing\":0,\"rotate\":2.25},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":1.02},{\"duration\":2,\"tweenEasing\":0,\"x\":1.02},{\"duration\":12}]},{\"name\":\"shouder_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.43,\"y\":-0.55},{\"duration\":11,\"tweenEasing\":0,\"x\":2.28,\"y\":1.52},{\"duration\":2,\"tweenEasing\":0,\"x\":2.28,\"y\":1.52},{\"duration\":6,\"tweenEasing\":0,\"x\":1.35,\"y\":0.25},{\"duration\":6,\"tweenEasing\":0,\"x\":0.54,\"y\":0.14},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":24.66},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-127.17},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-127.17},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-102.81},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-44.58},{\"duration\":0}]},{\"name\":\"shouder_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.96,\"y\":-0.15},{\"duration\":11,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.67},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.85,\"y\":-2.67},{\"duration\":6,\"tweenEasing\":0,\"x\":0.08,\"y\":-1.12},{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":-0.65},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-24.49},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-7.86},{\"duration\":2,\"tweenEasing\":0,\"rotate\":18.69},{\"duration\":6,\"tweenEasing\":0,\"rotate\":19.28},{\"duration\":6,\"tweenEasing\":0,\"rotate\":9.77},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":0.9},{\"duration\":2,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.87,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.91},{\"duration\":0}]},{\"name\":\"forearm_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01,\"y\":0.06},{\"duration\":11,\"tweenEasing\":0,\"x\":0.01,\"y\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.09},{\"duration\":6,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.1},{\"duration\":6,\"tweenEasing\":0,\"x\":0.06,\"y\":-0.04},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":5.94},{\"duration\":11,\"tweenEasing\":0,\"rotate\":9.46},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.33},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-14.34},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.3},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.98},{\"duration\":11,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.9},{\"duration\":6,\"tweenEasing\":0,\"x\":0.92},{\"duration\":6,\"tweenEasing\":0,\"x\":1.02},{\"duration\":0}]},{\"name\":\"forearm_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.18,\"y\":-0.05},{\"duration\":11,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.07},{\"duration\":2,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.07},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":1.11,\"y\":0.2},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":16.97},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3.95},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.95},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.5},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-0.84},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.91,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.84,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":0}]},{\"name\":\"hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.07,\"y\":-0.12},{\"duration\":11,\"tweenEasing\":0,\"x\":0.45,\"y\":-0.23},{\"duration\":2,\"tweenEasing\":0,\"x\":0.45,\"y\":-0.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.36,\"y\":-0.29},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.14},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-3.52},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-3.52},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-4.04},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-3.04},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.02,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":2,\"tweenEasing\":0,\"x\":0.95,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.88,\"y\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.82,\"y\":0.99},{\"duration\":0}]},{\"name\":\"hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.03,\"y\":-0.03},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03,\"y\":0.17},{\"duration\":2,\"tweenEasing\":0,\"x\":0.08,\"y\":0.18},{\"duration\":6,\"tweenEasing\":0,\"x\":0.09,\"y\":0.19},{\"duration\":6,\"tweenEasing\":0,\"x\":0.04,\"y\":0.11},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":0.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-0.23},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.23},{\"duration\":6,\"tweenEasing\":0,\"rotate\":8.42},{\"duration\":6,\"tweenEasing\":0,\"rotate\":3.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.99,\"y\":0.98},{\"duration\":11,\"tweenEasing\":0,\"x\":0.99,\"y\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97,\"y\":0.89},{\"duration\":6,\"tweenEasing\":0,\"x\":0.98,\"y\":0.91},{\"duration\":6}]},{\"name\":\"weapon_hand_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"y\":0.01},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-11.56},{\"duration\":11,\"tweenEasing\":0,\"rotate\":35.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":34.46},{\"duration\":6,\"tweenEasing\":0,\"rotate\":35.98},{\"duration\":6,\"tweenEasing\":0,\"rotate\":26.72},{\"duration\":0}]},{\"name\":\"weapon_hand_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.01},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.31,\"y\":-0.48},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.48},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.31,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.47},{\"tweenEasing\":0,\"x\":1.33,\"y\":-0.46},{\"tweenEasing\":0,\"x\":1.32,\"y\":-0.46},{\"tweenEasing\":0,\"x\":3.92,\"y\":-3.23},{\"duration\":6,\"tweenEasing\":0,\"x\":0.01,\"y\":-0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":72.69},{\"tweenEasing\":0,\"rotate\":-95.52},{\"tweenEasing\":0,\"rotate\":-151.72},{\"tweenEasing\":0,\"rotate\":124.8},{\"tweenEasing\":0,\"rotate\":63.15},{\"tweenEasing\":0,\"rotate\":5.26},{\"tweenEasing\":0,\"rotate\":-57.46},{\"tweenEasing\":0,\"rotate\":-116.85},{\"tweenEasing\":0,\"rotate\":-174.24},{\"tweenEasing\":0,\"rotate\":123.54},{\"tweenEasing\":0,\"rotate\":64.15},{\"tweenEasing\":0,\"rotate\":6.51},{\"tweenEasing\":0,\"rotate\":-55.46},{\"tweenEasing\":0,\"rotate\":-104.3},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-96.77},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-55.71},{\"duration\":0}]},{\"name\":\"root\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.78,\"y\":2.3},{\"duration\":11,\"tweenEasing\":0,\"x\":1.32,\"y\":0.3},{\"duration\":2,\"tweenEasing\":0,\"x\":1.32,\"y\":0.3},{\"duration\":6,\"tweenEasing\":0,\"x\":0.33,\"y\":1.37},{\"duration\":6,\"tweenEasing\":0,\"x\":0.17,\"y\":0.69},{\"duration\":0}]},{\"name\":\"thigh_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.09,\"y\":-0.24},{\"duration\":11,\"tweenEasing\":0,\"x\":0.76,\"y\":-0.66},{\"duration\":2,\"tweenEasing\":0,\"x\":0.78,\"y\":-0.66},{\"duration\":6,\"tweenEasing\":0,\"x\":0.72,\"y\":-0.54},{\"duration\":6,\"tweenEasing\":0,\"x\":0.56,\"y\":-0.15},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-22.27},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3},{\"duration\":2,\"tweenEasing\":0,\"rotate\":2.75},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-11.76},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.5},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.84,\"y\":0.99},{\"duration\":11,\"tweenEasing\":0,\"x\":1.01},{\"duration\":2,\"tweenEasing\":0,\"x\":1.01},{\"duration\":6,\"tweenEasing\":0,\"x\":0.93},{\"duration\":6,\"tweenEasing\":0,\"x\":0.95},{\"duration\":0}]},{\"name\":\"thigh_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.09,\"y\":0.23},{\"duration\":11,\"tweenEasing\":0,\"x\":-0.74,\"y\":0.62},{\"duration\":2,\"tweenEasing\":0,\"x\":-0.77,\"y\":0.62},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.72,\"y\":0.49},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.24,\"y\":0.33},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-19.58},{\"duration\":11,\"tweenEasing\":0,\"rotate\":3.01},{\"duration\":2,\"tweenEasing\":0,\"rotate\":3.51},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-9.54},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-6.03},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":1.01},{\"duration\":11,\"tweenEasing\":0,\"x\":0.98},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01},{\"duration\":6,\"tweenEasing\":0,\"x\":1.01},{\"duration\":0}]},{\"name\":\"calf_r\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.04,\"y\":-0.04},{\"duration\":11,\"tweenEasing\":0,\"x\":0.03},{\"duration\":2,\"tweenEasing\":0,\"x\":0.03},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.01},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":33.01},{\"duration\":11,\"tweenEasing\":0,\"rotate\":9.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":9.54},{\"duration\":6,\"tweenEasing\":0,\"rotate\":27.29},{\"duration\":6,\"tweenEasing\":0,\"rotate\":17.02},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.94},{\"duration\":11,\"tweenEasing\":0,\"x\":0.97},{\"duration\":2,\"tweenEasing\":0,\"x\":0.97},{\"duration\":6,\"tweenEasing\":0,\"x\":0.94},{\"duration\":6,\"tweenEasing\":0,\"x\":0.96},{\"duration\":0}]},{\"name\":\"calf_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.06},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0,\"x\":0.01},{\"duration\":6,\"tweenEasing\":0,\"x\":-0.01,\"y\":-0.02},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":20.59},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-0.02},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-0.77},{\"duration\":6,\"tweenEasing\":0,\"rotate\":13.3},{\"duration\":6,\"tweenEasing\":0,\"rotate\":8.28},{\"duration\":0}],\"scaleFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.9},{\"duration\":11,\"tweenEasing\":0,\"x\":1.04},{\"duration\":2,\"tweenEasing\":0,\"x\":1.04},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":6,\"tweenEasing\":0,\"x\":0.99},{\"duration\":0}]},{\"name\":\"foot_r\",\"translateFrame\":[{\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":11,\"tweenEasing\":0,\"y\":-0.03},{\"duration\":2,\"tweenEasing\":0,\"y\":-0.04},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.06},{\"duration\":6,\"tweenEasing\":0,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"tweenEasing\":0,\"rotate\":-10.78},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-11.2},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-12.04},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-12.29},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-15.55},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-8.53},{\"duration\":0}]},{\"name\":\"foot_l\",\"translateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"x\":0.02,\"y\":0.01},{\"duration\":11,\"tweenEasing\":0},{\"duration\":2,\"tweenEasing\":0},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02},{\"duration\":6,\"tweenEasing\":0,\"x\":0.02,\"y\":-0.02},{\"duration\":0}],\"rotateFrame\":[{\"duration\":3,\"tweenEasing\":0,\"rotate\":-1.08},{\"duration\":11,\"tweenEasing\":0,\"rotate\":-2.98},{\"duration\":2,\"tweenEasing\":0,\"rotate\":-2.73},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-3.76},{\"duration\":6,\"tweenEasing\":0,\"rotate\":-2.26},{\"duration\":0}]}],\"slot\":[{\"name\":\"effect_r\",\"displayFrame\":[{\"duration\":28,\"value\":-1}]}]}],\"defaultActions\":[{\"gotoAndPlay\":\"Idle1\"}]}]}", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json index 000fccb..376c728 100644 --- a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json @@ -1 +1 @@ -{"width":128,"imagePath":"SoldierElf_tex.png","height":128,"name":"SoldierElf","SubTexture":[{"frameHeight":45,"y":1,"frameX":0,"width":34,"frameY":0,"height":44,"name":"cape","frameWidth":34,"x":70},{"width":10,"y":107,"height":14,"name":"shouder_l","x":74},{"width":11,"y":107,"height":14,"name":"forearm_l","x":61},{"width":15,"y":93,"height":16,"name":"hand_l","x":1},{"width":30,"y":61,"height":30,"name":"weapon_hand_l","x":1},{"width":8,"y":101,"height":11,"name":"thigh_l","x":86},{"width":12,"y":93,"height":17,"name":"calf_l","x":18},{"width":20,"y":113,"height":8,"name":"foot_l","x":39},{"width":28,"y":61,"height":31,"name":"pelvis","x":33},{"width":8,"y":88,"height":11,"name":"thigh_r","x":77},{"width":12,"y":88,"height":17,"name":"calf_r","x":63},{"width":20,"y":113,"height":8,"name":"foot_r","x":17},{"width":13,"y":94,"height":12,"name":"shouder_r","x":45},{"width":67,"y":1,"height":58,"name":"chest","x":1},{"width":11,"y":94,"height":17,"name":"forearm_r","x":32},{"width":14,"y":111,"height":13,"name":"hand_r","x":1},{"frameHeight":39,"y":47,"frameX":-2,"width":34,"frameY":0,"height":39,"name":"we_bl_4_f_1","frameWidth":36,"x":70}]} \ No newline at end of file +{"width":128,"SubTexture":[{"frameWidth":34,"y":1,"frameHeight":45,"width":34,"frameX":0,"height":44,"name":"cape","frameY":0,"x":70},{"width":10,"y":107,"height":14,"name":"shouder_l","x":74},{"width":11,"y":107,"height":14,"name":"forearm_l","x":61},{"width":15,"y":93,"height":16,"name":"hand_l","x":1},{"width":30,"y":61,"height":30,"name":"weapon_hand_l","x":1},{"width":8,"y":88,"height":11,"name":"thigh_l","x":77},{"width":12,"y":93,"height":17,"name":"calf_l","x":18},{"width":20,"y":113,"height":8,"name":"foot_l","x":39},{"width":28,"y":61,"height":31,"name":"pelvis","x":33},{"width":8,"y":101,"height":11,"name":"thigh_r","x":86},{"width":12,"y":88,"height":17,"name":"calf_r","x":63},{"width":20,"y":113,"height":8,"name":"foot_r","x":17},{"width":13,"y":94,"height":12,"name":"shouder_r","x":45},{"width":67,"y":1,"height":58,"name":"chest","x":1},{"width":11,"y":94,"height":17,"name":"forearm_r","x":32},{"width":14,"y":111,"height":13,"name":"hand_r","x":1},{"frameWidth":36,"y":47,"frameHeight":39,"width":34,"frameX":-2,"height":39,"name":"we_bl_4_f_1","frameY":0,"x":70}],"height":128,"name":"SoldierElf","imagePath":"SoldierElf_tex.png"} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta index c591815..2e948a9 100644 --- a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta +++ b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.json.meta @@ -1,7 +1,7 @@ { "ver": "1.0.0", "uuid": "24d7bb8f-577c-4e5d-b730-56613ca8685d", - "atlasJson": "{\"width\":128,\"imagePath\":\"SoldierElf_tex.png\",\"height\":128,\"name\":\"SoldierElf\",\"SubTexture\":[{\"frameHeight\":45,\"y\":1,\"frameX\":0,\"width\":34,\"frameY\":0,\"height\":44,\"name\":\"cape\",\"frameWidth\":34,\"x\":70},{\"width\":10,\"y\":107,\"height\":14,\"name\":\"shouder_l\",\"x\":74},{\"width\":11,\"y\":107,\"height\":14,\"name\":\"forearm_l\",\"x\":61},{\"width\":15,\"y\":93,\"height\":16,\"name\":\"hand_l\",\"x\":1},{\"width\":30,\"y\":61,\"height\":30,\"name\":\"weapon_hand_l\",\"x\":1},{\"width\":8,\"y\":101,\"height\":11,\"name\":\"thigh_l\",\"x\":86},{\"width\":12,\"y\":93,\"height\":17,\"name\":\"calf_l\",\"x\":18},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_l\",\"x\":39},{\"width\":28,\"y\":61,\"height\":31,\"name\":\"pelvis\",\"x\":33},{\"width\":8,\"y\":88,\"height\":11,\"name\":\"thigh_r\",\"x\":77},{\"width\":12,\"y\":88,\"height\":17,\"name\":\"calf_r\",\"x\":63},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_r\",\"x\":17},{\"width\":13,\"y\":94,\"height\":12,\"name\":\"shouder_r\",\"x\":45},{\"width\":67,\"y\":1,\"height\":58,\"name\":\"chest\",\"x\":1},{\"width\":11,\"y\":94,\"height\":17,\"name\":\"forearm_r\",\"x\":32},{\"width\":14,\"y\":111,\"height\":13,\"name\":\"hand_r\",\"x\":1},{\"frameHeight\":39,\"y\":47,\"frameX\":-2,\"width\":34,\"frameY\":0,\"height\":39,\"name\":\"we_bl_4_f_1\",\"frameWidth\":36,\"x\":70}]}", + "atlasJson": "{\"width\":128,\"SubTexture\":[{\"frameWidth\":34,\"y\":1,\"frameHeight\":45,\"width\":34,\"frameX\":0,\"height\":44,\"name\":\"cape\",\"frameY\":0,\"x\":70},{\"width\":10,\"y\":107,\"height\":14,\"name\":\"shouder_l\",\"x\":74},{\"width\":11,\"y\":107,\"height\":14,\"name\":\"forearm_l\",\"x\":61},{\"width\":15,\"y\":93,\"height\":16,\"name\":\"hand_l\",\"x\":1},{\"width\":30,\"y\":61,\"height\":30,\"name\":\"weapon_hand_l\",\"x\":1},{\"width\":8,\"y\":88,\"height\":11,\"name\":\"thigh_l\",\"x\":77},{\"width\":12,\"y\":93,\"height\":17,\"name\":\"calf_l\",\"x\":18},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_l\",\"x\":39},{\"width\":28,\"y\":61,\"height\":31,\"name\":\"pelvis\",\"x\":33},{\"width\":8,\"y\":101,\"height\":11,\"name\":\"thigh_r\",\"x\":86},{\"width\":12,\"y\":88,\"height\":17,\"name\":\"calf_r\",\"x\":63},{\"width\":20,\"y\":113,\"height\":8,\"name\":\"foot_r\",\"x\":17},{\"width\":13,\"y\":94,\"height\":12,\"name\":\"shouder_r\",\"x\":45},{\"width\":67,\"y\":1,\"height\":58,\"name\":\"chest\",\"x\":1},{\"width\":11,\"y\":94,\"height\":17,\"name\":\"forearm_r\",\"x\":32},{\"width\":14,\"y\":111,\"height\":13,\"name\":\"hand_r\",\"x\":1},{\"frameWidth\":36,\"y\":47,\"frameHeight\":39,\"width\":34,\"frameX\":-2,\"height\":39,\"name\":\"we_bl_4_f_1\",\"frameY\":0,\"x\":70}],\"height\":128,\"name\":\"SoldierElf\",\"imagePath\":\"SoldierElf_tex.png\"}", "texture": "050fb016-1a1f-4341-8367-283bfeddc4a8", "subMetas": {} } \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png index 2d2ccee..7e5058b 100644 Binary files a/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png and b/frontend/assets/resources/animation/SoldierElf/SoldierElf_tex.png differ diff --git a/frontend/assets/resources/animation/SoldierFireGhost.meta b/frontend/assets/resources/animation/SoldierFireGhost.meta new file mode 100644 index 0000000..58a5d5f --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost.meta @@ -0,0 +1,7 @@ +{ + "ver": "1.0.1", + "uuid": "f1176719-d1d6-4af5-89c6-ddff16ab85fd", + "isSubpackage": false, + "subpackageName": "", + "subMetas": {} +} \ No newline at end of file diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json new file mode 100644 index 0000000..f2c523b --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json @@ -0,0 +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 diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta new file mode 100644 index 0000000..7fa4279 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_ske.json.meta @@ -0,0 +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\"}]}]}", + "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 new file mode 100644 index 0000000..86bffe5 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json @@ -0,0 +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 diff --git a/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta new file mode 100644 index 0000000..465cb42 --- /dev/null +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.json.meta @@ -0,0 +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\"}", + "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 new file mode 100644 index 0000000..962fd0e Binary files /dev/null and b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png differ diff --git a/dragonBonesAnimProjects/library/SoldierElf_tex.png.meta b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta similarity index 64% rename from dragonBonesAnimProjects/library/SoldierElf_tex.png.meta rename to frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta index 17273b5..362b035 100644 --- a/dragonBonesAnimProjects/library/SoldierElf_tex.png.meta +++ b/frontend/assets/resources/animation/SoldierFireGhost/SoldierFireGhost_tex.png.meta @@ -1,6 +1,6 @@ { "ver": "2.3.3", - "uuid": "4a3aabb1-75b6-40ec-b107-241164a8ec23", + "uuid": "700d963b-2192-4219-a066-8be5b3db7453", "type": "sprite", "wrapMode": "clamp", "filterMode": "bilinear", @@ -9,19 +9,19 @@ "packable": true, "platformSettings": {}, "subMetas": { - "SoldierElf_tex": { + "SoldierFireGhost_tex": { "ver": "1.0.4", - "uuid": "a969fc2f-5d11-4ac6-90e1-235b1e119802", - "rawTextureUuid": "4a3aabb1-75b6-40ec-b107-241164a8ec23", + "uuid": "8ef8a6b3-0bac-4cf1-bba0-ab090f4d9e52", + "rawTextureUuid": "700d963b-2192-4219-a066-8be5b3db7453", "trimType": "auto", "trimThreshold": 1, "rotated": false, - "offsetX": -11.5, - "offsetY": 1.5, + "offsetX": -2.5, + "offsetY": 21, "trimX": 1, "trimY": 1, - "width": 103, - "height": 123, + "width": 121, + "height": 84, "rawWidth": 128, "rawHeight": 128, "borderTop": 0, diff --git a/frontend/assets/resources/map/dungeon/map.tmx b/frontend/assets/resources/map/dungeon/map.tmx index a2856de..3f6bc43 100644 --- a/frontend/assets/resources/map/dungeon/map.tmx +++ b/frontend/assets/resources/map/dungeon/map.tmx @@ -1,5 +1,5 @@ - + @@ -61,5 +61,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/frontend/assets/resources/pbfiles/room_downsync_frame.proto b/frontend/assets/resources/pbfiles/room_downsync_frame.proto index 310b470..ecabe52 100644 --- a/frontend/assets/resources/pbfiles/room_downsync_frame.proto +++ b/frontend/assets/resources/pbfiles/room_downsync_frame.proto @@ -53,9 +53,15 @@ message PlayerDownsyncMeta { double colliderRadius = 6; } +message InputFrameDecoded { + int32 dx = 1; + int32 dy = 2; + int32 btnALevel = 3; +} + message InputFrameUpsync { int32 inputFrameId = 1; - int32 encodedDir = 6; + uint64 encoded = 2; } message InputFrameDownsync { diff --git a/frontend/assets/resources/prefabs/ControlledCharacter.prefab b/frontend/assets/resources/prefabs/ControlledCharacter.prefab index e9e7984..230b612 100644 --- a/frontend/assets/resources/prefabs/ControlledCharacter.prefab +++ b/frontend/assets/resources/prefabs/ControlledCharacter.prefab @@ -33,14 +33,14 @@ "_active": true, "_components": [ { - "__id__": 14 + "__id__": 19 }, { - "__id__": 15 + "__id__": 20 } ], "_prefab": { - "__id__": 16 + "__id__": 21 }, "_opacity": 255, "_color": { @@ -484,15 +484,82 @@ "_parent": { "__id__": 1 }, - "_children": [], - "_active": true, - "_components": [ + "_children": [ { "__id__": 12 + }, + { + "__id__": 15 + } + ], + "_active": true, + "_components": [], + "_prefab": { + "__id__": 18 + }, + "_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": "" + }, + { + "__type__": "cc.Node", + "_name": "SoldierElf", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 13 } ], "_prefab": { - "__id__": 13 + "__id__": 14 }, "_opacity": 255, "_color": { @@ -546,7 +613,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 11 + "__id__": 12 }, "_enabled": true, "_materials": [ @@ -581,6 +648,132 @@ "_N$enableBatch": false, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" + }, + "fileId": "3fs20Yd8dIO68/1Wx2oVLh", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "SoldierFireGhost", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 17 + }, + "_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": "" + }, + { + "__type__": "dragonBones.ArmatureDisplay", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 15 + }, + "_enabled": true, + "_materials": [ + { + "__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": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" + }, + "fileId": "a8ZUEyoP1Ec5azSkL7Z/9h", + "sync": false + }, { "__type__": "cc.PrefabInfo", "root": { diff --git a/frontend/assets/scenes/default_map.fire b/frontend/assets/scenes/default_map.fire index 2428898..f324ed5 100644 --- a/frontend/assets/scenes/default_map.fire +++ b/frontend/assets/scenes/default_map.fire @@ -80,20 +80,20 @@ ], "_active": true, "_components": [ + { + "__id__": 31 + }, + { + "__id__": 32 + }, + { + "__id__": 33 + }, { "__id__": 34 }, { "__id__": 35 - }, - { - "__id__": 36 - }, - { - "__id__": 37 - }, - { - "__id__": 38 } ], "_prefab": null, @@ -234,7 +234,7 @@ "__id__": 7 }, { - "__id__": 33 + "__id__": 30 } ], "_prefab": null, @@ -323,7 +323,7 @@ "__id__": 17 }, "countdownLabel": { - "__id__": 26 + "__id__": 23 }, "resultPanelPrefab": { "__uuid__": "c4cfe3bd-c59e-4d5b-95cb-c933b120e184" @@ -354,13 +354,13 @@ }, "_children": [ { - "__id__": 27 + "__id__": 24 } ], "_active": true, "_components": [ { - "__id__": 32 + "__id__": 29 } ], "_prefab": null, @@ -422,14 +422,11 @@ { "__id__": 12 }, - { - "__id__": 22 - }, { "__id__": 8 }, { - "__id__": 25 + "__id__": 22 } ], "_active": true, @@ -525,7 +522,7 @@ "array": [ 0, 0, - 210.4441731196186, + 239.32248305180272, 0, 0, 0, @@ -1027,111 +1024,6 @@ "_N$affectedByScale": false, "_id": "f6GkgYwn9JvKLqbGG1zmeD" }, - { - "__type__": "cc.Node", - "_name": "KeyboardControlsMount", - "_objFlags": 0, - "_parent": { - "__id__": 9 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 23 - }, - { - "__id__": 24 - } - ], - "_prefab": null, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -341.33333, - -640, - 0, - 0, - 0, - 0, - 1, - 0.66667, - 0.66667, - 0.66667 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "e6nL+1zEhLmLSaT8R/9UgD" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 22 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_useOriginalSize": false, - "_string": "", - "_N$string": "", - "_fontSize": 40, - "_lineHeight": 40, - "_enableWrapText": true, - "_N$file": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_batchAsBitmap": false, - "_N$horizontalAlign": 1, - "_N$verticalAlign": 1, - "_N$fontFamily": "Arial", - "_N$overflow": 0, - "_N$cacheMode": 0, - "_id": "9cS5BRd+NKJIvGQiojJtIs" - }, - { - "__type__": "4561aFzv9JPZLe6iIzODk2d", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 22 - }, - "_enabled": true, - "_id": "5ahzSYC8pCCLVPCBYyCRfZ" - }, { "__type__": "cc.Node", "_name": "CountdownSeconds", @@ -1143,7 +1035,7 @@ "_active": true, "_components": [ { - "__id__": 26 + "__id__": 23 } ], "_prefab": null, @@ -1199,7 +1091,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 25 + "__id__": 22 }, "_enabled": true, "_materials": [ @@ -1233,16 +1125,16 @@ }, "_children": [ { - "__id__": 28 + "__id__": 25 } ], "_active": true, "_components": [ { - "__id__": 30 + "__id__": 27 }, { - "__id__": 31 + "__id__": 28 } ], "_prefab": null, @@ -1298,13 +1190,13 @@ "_name": "Joystick", "_objFlags": 0, "_parent": { - "__id__": 27 + "__id__": 24 }, "_children": [], "_active": true, "_components": [ { - "__id__": 29 + "__id__": 26 } ], "_prefab": null, @@ -1360,7 +1252,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 28 + "__id__": 25 }, "_enabled": true, "_materials": [ @@ -1394,7 +1286,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 27 + "__id__": 24 }, "_enabled": true, "_materials": [ @@ -1428,7 +1320,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 27 + "__id__": 24 }, "_enabled": true, "alignMode": 0, @@ -1590,11 +1482,12 @@ "zoomingListenerNode": { "__id__": 5 }, + "actionBtnListenerNode": null, "stickhead": { - "__id__": 28 + "__id__": 25 }, "base": { - "__id__": 27 + "__id__": 24 }, "joyStickEps": 0.1, "magicLeanLowerBound": 0.414, diff --git a/frontend/assets/scenes/login.fire b/frontend/assets/scenes/login.fire index 5cbb696..87ea411 100644 --- a/frontend/assets/scenes/login.fire +++ b/frontend/assets/scenes/login.fire @@ -440,7 +440,7 @@ "array": [ 0, 0, - 210.4441731196186, + 239.32248305180272, 0, 0, 0, diff --git a/frontend/assets/scenes/offline_map_1.fire b/frontend/assets/scenes/offline_map_1.fire index 9e1f855..249cb54 100644 --- a/frontend/assets/scenes/offline_map_1.fire +++ b/frontend/assets/scenes/offline_map_1.fire @@ -77,20 +77,20 @@ ], "_active": true, "_components": [ + { + "__id__": 19 + }, + { + "__id__": 20 + }, + { + "__id__": 21 + }, { "__id__": 22 }, { "__id__": 23 - }, - { - "__id__": 24 - }, - { - "__id__": 25 - }, - { - "__id__": 26 } ], "_prefab": null, @@ -262,8 +262,6 @@ "controlledCharacterPrefab": { "__uuid__": "59bff7a2-23e1-4d69-bce7-afb37eae196a" }, - "player1Prefab": null, - "player2Prefab": null, "joystickInputControllerNode": { "__id__": 7 }, @@ -279,9 +277,6 @@ "forceBigEndianFloatingNumDecoding": false, "renderFrameIdLagTolerance": 4, "jigglingEps1D": 0.001, - "keyboardInputControllerNode": { - "__id__": 11 - }, "_id": "4b+kZ46VhC0LCBixXEK2dk" }, { @@ -293,13 +288,13 @@ }, "_children": [ { - "__id__": 16 + "__id__": 13 } ], "_active": true, "_components": [ { - "__id__": 21 + "__id__": 18 } ], "_prefab": null, @@ -358,14 +353,11 @@ "__id__": 9 }, "_children": [ - { - "__id__": 11 - }, { "__id__": 7 }, { - "__id__": 14 + "__id__": 11 } ], "_active": true, @@ -461,7 +453,7 @@ "array": [ 0, 0, - 210.4441731196186, + 239.32248305180272, 0, 0, 0, @@ -520,111 +512,6 @@ "_alignWithScreen": true, "_id": "50qiPTLS9NhbPa+JZU0jOP" }, - { - "__type__": "cc.Node", - "_name": "KeyboardControlsMount", - "_objFlags": 0, - "_parent": { - "__id__": 8 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 12 - }, - { - "__id__": 13 - } - ], - "_prefab": null, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -341.33333, - -640, - 0, - 0, - 0, - 0, - 1, - 0.66667, - 0.66667, - 0.66667 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "e6nL+1zEhLmLSaT8R/9UgD" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 11 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_useOriginalSize": false, - "_string": "", - "_N$string": "", - "_fontSize": 40, - "_lineHeight": 40, - "_enableWrapText": true, - "_N$file": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_batchAsBitmap": false, - "_N$horizontalAlign": 1, - "_N$verticalAlign": 1, - "_N$fontFamily": "Arial", - "_N$overflow": 0, - "_N$cacheMode": 0, - "_id": "9cS5BRd+NKJIvGQiojJtIs" - }, - { - "__type__": "4561aFzv9JPZLe6iIzODk2d", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 11 - }, - "_enabled": true, - "_id": "5ahzSYC8pCCLVPCBYyCRfZ" - }, { "__type__": "cc.Node", "_name": "CountdownSeconds", @@ -636,7 +523,7 @@ "_active": true, "_components": [ { - "__id__": 15 + "__id__": 12 } ], "_prefab": null, @@ -692,7 +579,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 14 + "__id__": 11 }, "_enabled": true, "_materials": [ @@ -726,16 +613,16 @@ }, "_children": [ { - "__id__": 17 + "__id__": 14 } ], "_active": true, "_components": [ { - "__id__": 19 + "__id__": 16 }, { - "__id__": 20 + "__id__": 17 } ], "_prefab": null, @@ -791,13 +678,13 @@ "_name": "Joystick", "_objFlags": 0, "_parent": { - "__id__": 16 + "__id__": 13 }, "_children": [], "_active": true, "_components": [ { - "__id__": 18 + "__id__": 15 } ], "_prefab": null, @@ -853,7 +740,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 17 + "__id__": 14 }, "_enabled": true, "_materials": [ @@ -887,7 +774,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 16 + "__id__": 13 }, "_enabled": true, "_materials": [ @@ -921,7 +808,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 16 + "__id__": 13 }, "_enabled": true, "alignMode": 0, @@ -1056,10 +943,10 @@ "__id__": 3 }, "stickhead": { - "__id__": 17 + "__id__": 14 }, "base": { - "__id__": 16 + "__id__": 13 }, "joyStickEps": 0.1, "magicLeanLowerBound": 0.414, diff --git a/frontend/assets/scripts/AttackingCharacter.js b/frontend/assets/scripts/AttackingCharacter.js index 4844124..7bfbc34 100644 --- a/frontend/assets/scripts/AttackingCharacter.js +++ b/frontend/assets/scripts/AttackingCharacter.js @@ -16,13 +16,20 @@ cc.Class({ }, ctor() { + this.speciesName = null; + }, + + 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]); + this.effAnimNode.active = true; }, onLoad() { BaseCharacter.prototype.onLoad.call(this); this.characterState = ATK_CHARACTER_STATE.Idle1[0]; - this.animComp = this.animNode.getComponent(dragonBones.ArmatureDisplay); - this.animComp.playAnimation(ATK_CHARACTER_STATE.Idle1[1]); }, scheduleNewDirection(newScheduledDirection, forceAnimSwitch) { diff --git a/frontend/assets/scripts/KeyboardControls.js b/frontend/assets/scripts/KeyboardControls.js deleted file mode 100644 index d40ba44..0000000 --- a/frontend/assets/scripts/KeyboardControls.js +++ /dev/null @@ -1,69 +0,0 @@ -cc.Class({ - extends: cc.Component, - - properties: {}, - - setInputControls: function() { - const self = this; - // add keyboard event listener - // When there is a key being pressed down, judge if it's the designated directional button and set up acceleration in the corresponding direction - cc.systemEvent.on(cc.SystemEvent.EventType.KEY_DOWN, function(event) { - switch (event.keyCode) { - case cc.macro.KEY.w: - self.activeDirection.dPjY = +1.0; - break; - case cc.macro.KEY.s: - self.activeDirection.dPjY = -1.0; - break; - case cc.macro.KEY.a: - self.activeDirection.dPjX = -2.0; - break; - case cc.macro.KEY.d: - self.activeDirection.dPjX = +2.0; - break; - default: - break; - } - }, self.node); - - // when releasing the button, stop acceleration in this direction - cc.systemEvent.on(cc.SystemEvent.EventType.KEY_UP, function(event) { - switch (event.keyCode) { - case cc.macro.KEY.w: - if (+1.0 == self.activeDirection.dPjY) { - self.activeDirection.dPjY = 0.0; - } - break; - case cc.macro.KEY.s: - if (-1.0 == self.activeDirection.dPjY) { - self.activeDirection.dPjY = 0.0; - } - break; - case cc.macro.KEY.a: - if (-2.0 == self.activeDirection.dPjX) { - self.activeDirection.dPjX = 0.0; - } - break; - case cc.macro.KEY.d: - if (+2.0 == self.activeDirection.dPjX) { - self.activeDirection.dPjX = 0.0; - } - break; - default: - break; - } - }, self.node); - }, - - // LIFE-CYCLE CALLBACKS: - - onLoad() { - // Properties deliberately hidden from GUI panel. - this.activeDirection = { - dPjY: 0.0, - dPjX: 0.0 - }; - this.setInputControls(); - } -}); - diff --git a/frontend/assets/scripts/KeyboardControls.js.meta b/frontend/assets/scripts/KeyboardControls.js.meta deleted file mode 100644 index f8aa05c..0000000 --- a/frontend/assets/scripts/KeyboardControls.js.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "1.0.5", - "uuid": "4561a173-bfd2-4f64-b7ba-888cce0e4d9d", - "isPlugin": false, - "loadPluginInWeb": true, - "loadPluginInNative": true, - "loadPluginInEditor": false, - "subMetas": {} -} \ No newline at end of file diff --git a/frontend/assets/scripts/Map.js b/frontend/assets/scripts/Map.js index 10f9cb4..c63da11 100644 --- a/frontend/assets/scripts/Map.js +++ b/frontend/assets/scripts/Map.js @@ -163,8 +163,8 @@ cc.Class({ return [previousSelfInput, existingInputFrame.inputList[joinIndex - 1]]; } const prefabbedInputList = (null == previousInputFrameDownsyncWithPrediction ? new Array(self.playerRichInfoDict.size).fill(0) : previousInputFrameDownsyncWithPrediction.inputList.slice()); - const discreteDir = self.ctrl.getDiscretizedDirection(); - prefabbedInputList[(joinIndex - 1)] = discreteDir.encodedIdx; + const currSelfInput = self.ctrl.getEncodedInput(); + prefabbedInputList[(joinIndex - 1)] = currSelfInput; const prefabbedInputFrameDownsync = { inputFrameId: inputFrameId, inputList: prefabbedInputList, @@ -173,7 +173,7 @@ cc.Class({ self.dumpToInputCache(prefabbedInputFrameDownsync); // A prefabbed inputFrame, would certainly be adding a new inputFrame to the cache, because server only downsyncs "all-confirmed inputFrames" - return [previousSelfInput, discreteDir.encodedIdx]; + return [previousSelfInput, currSelfInput]; }, shouldSendInputFrameUpsyncBatch(prevSelfInput, currSelfInput, lastUpsyncInputFrameId, currInputFrameId) { @@ -204,7 +204,7 @@ cc.Class({ } else { const inputFrameUpsync = { inputFrameId: i, - encodedDir: inputFrameDownsync.inputList[self.selfPlayerInfo.joinIndex - 1], + encoded: inputFrameDownsync.inputList[self.selfPlayerInfo.joinIndex - 1], }; inputFrameUpsyncBatch.push(inputFrameUpsync); } @@ -338,7 +338,7 @@ cc.Class({ window.mapIns = self; window.forceBigEndianFloatingNumDecoding = self.forceBigEndianFloatingNumDecoding; - self.showCriticalCoordinateLabels = true; + self.showCriticalCoordinateLabels = false; console.warn("+++++++ Map onLoad()"); window.handleClientSessionError = function() { @@ -754,12 +754,12 @@ cc.Class({ const self = this; const newPlayerNode = cc.instantiate(self.controlledCharacterPrefab) const playerScriptIns = newPlayerNode.getComponent("ControlledCharacter"); + if (1 == joinIndex) { - newPlayerNode.color = cc.Color.RED; - } - if (2 == joinIndex) { - newPlayerNode.color = cc.Color.BLUE; - playerScriptIns.animNode.scaleX = (-1.0); + playerScriptIns.setSpecies("SoldierElf"); + } else if (2 == joinIndex) { + playerScriptIns.setSpecies("SoldierFireGhost"); + playerScriptIns.animComp.node.scaleX = (-1.0); } const wpos = self.virtualGridToWorldPos(vx, vy); @@ -1039,8 +1039,7 @@ cc.Class({ const playerCollider = collisionSysMap.get(collisionPlayerIndex); const player = currRenderFrame.players[playerId]; - const encodedInput = inputList[joinIndex - 1]; - const decodedInput = self.ctrl.decodeDirection(encodedInput); + const decodedInput = self.ctrl.decodeInput(inputList[joinIndex - 1]); // console.log(`Got non-zero inputs for playerId=${playerId}, decodedInput=${JSON.stringify(decodedInput)} @currRenderFrame.id=${currRenderFrame.id}, delayedInputFrame.id=${delayedInputFrame.id}`); /* diff --git a/frontend/assets/scripts/OfflineMap.js b/frontend/assets/scripts/OfflineMap.js index ada2626..3d38324 100644 --- a/frontend/assets/scripts/OfflineMap.js +++ b/frontend/assets/scripts/OfflineMap.js @@ -6,13 +6,6 @@ const OnlineMap = require('./Map'); cc.Class({ extends: OnlineMap, - properties: { - keyboardInputControllerNode: { - type: cc.Node, - default: null - }, - }, - onDestroy() { console.warn("+++++++ Map onDestroy()"); }, @@ -21,6 +14,12 @@ cc.Class({ const self = this; const newPlayerNode = cc.instantiate(self.controlledCharacterPrefab) const playerScriptIns = newPlayerNode.getComponent("ControlledCharacter"); + if (1 == joinIndex) { + playerScriptIns.setSpecies("SoldierElf"); + } else if (2 == joinIndex) { + playerScriptIns.setSpecies("SoldierFireGhost"); + playerScriptIns.animComp.node.scaleX = (-1.0); + } const wpos = self.virtualGridToWorldPos(vx, vy); newPlayerNode.setPosition(cc.v2(wpos[0], wpos[1])); @@ -150,9 +149,10 @@ cc.Class({ players: { 10: { id: 10, + joinIndex: 2, virtualGridX: 0, virtualGridY: 0, - speed: 2*self.worldToVirtualGridRatio, + speed: 2 * self.worldToVirtualGridRatio, dir: { dx: 0, dy: 0 diff --git a/frontend/assets/scripts/TouchEventsManager.js b/frontend/assets/scripts/TouchEventsManager.js index 19617ff..4982f64 100644 --- a/frontend/assets/scripts/TouchEventsManager.js +++ b/frontend/assets/scripts/TouchEventsManager.js @@ -94,6 +94,12 @@ cc.Class({ onLoad() { this.cachedStickHeadPosition = cc.v2(0.0, 0.0); + this.cachedBtnUpLevel = 0; + this.cachedBtnDownLevel = 0; + this.cachedBtnLeftLevel = 0; + this.cachedBtnRightLevel = 0; + this.cachedBtnALevel = 0; + this.canvasNode = this.mapNode.parent; this.mainCameraNode = this.canvasNode.getChildByName("Main Camera"); // Cannot drag and assign the `mainCameraNode` from CocosCreator EDITOR directly, otherwise it'll cause an infinite loading time, till v2.1.0. this.mainCamera = this.mainCameraNode.getComponent(cc.Camera); @@ -143,6 +149,51 @@ cc.Class({ self._touchEndEvent(event); }); zoomingListenerNode.inTouchPoints = new Map(); + + // Setup keyboard controls for the ease of attach debugging + cc.systemEvent.on(cc.SystemEvent.EventType.KEY_DOWN, function(evt) { + switch (evt.keyCode) { + case cc.macro.KEY.w: + self.cachedBtnUpLevel = 1; + break; + case cc.macro.KEY.s: + self.cachedBtnDownLevel = 1; + break; + case cc.macro.KEY.a: + self.cachedBtnLeftLevel = 1; + break; + case cc.macro.KEY.d: + self.cachedBtnRightLevel = 1; + break; + case cc.macro.KEY.h: + self.cachedBtnALevel = 1; + break; + default: + break; + } + }, this); + + cc.systemEvent.on(cc.SystemEvent.EventType.KEY_UP, function(evt) { + switch (evt.keyCode) { + case cc.macro.KEY.w: + self.cachedBtnUpLevel = 0; + break; + case cc.macro.KEY.s: + self.cachedBtnDownLevel = 0; + break; + case cc.macro.KEY.a: + self.cachedBtnLeftLevel = 0; + break; + case cc.macro.KEY.d: + self.cachedBtnRightLevel = 0; + break; + case cc.macro.KEY.h: + self.cachedBtnALevel = 0; + break; + default: + break; + } + }, this); }, _isMapOverMoved(mapTargetPos) { @@ -239,7 +290,6 @@ cc.Class({ // TODO: Handle single-finger-click event. } while (false); - this.cachedStickHeadPosition = cc.v2(0.0, 0.0); for (let touch of event._touches) { if (touch) { theListenerNode.inTouchPoints.delete(touch._id); @@ -252,7 +302,42 @@ cc.Class({ update(dt) { if (this.inMultiTouch) return; if (true != this.initialized) return; + const self = this; + // Keyboard takes top priority + let keyboardDiffVec = cc.v2(0, 0); + if (1 == this.cachedBtnUpLevel) { + if (1 == this.cachedBtnLeftLevel) { + keyboardDiffVec = cc.v2(-1.0, +1.0); + } else if (1 == this.cachedBtnRightLevel) { + keyboardDiffVec = cc.v2(+1.0, +1.0); + } else { + keyboardDiffVec = cc.v2(0.0, +1.0); + } + } else if (1 == this.cachedBtnDownLevel) { + if (1 == this.cachedBtnLeftLevel) { + keyboardDiffVec = cc.v2(-1.0, -1.0); + } else if (1 == this.cachedBtnRightLevel) { + keyboardDiffVec = cc.v2(+1.0, -1.0); + } else { + keyboardDiffVec = cc.v2(0.0, -1.0); + } + } else if (1 == this.cachedBtnLeftLevel) { + keyboardDiffVec = cc.v2(-1.0, 0.0); + } else if (1 == this.cachedBtnRightLevel) { + keyboardDiffVec = cc.v2(+1.0, 0.0); + } + if (0 != keyboardDiffVec.x || 0 != keyboardDiffVec.y) { + this.cachedStickHeadPosition = keyboardDiffVec.mul(this.maxHeadDistance / keyboardDiffVec.mag()); + } this.stickhead.setPosition(this.cachedStickHeadPosition); + + const translationListenerNode = (self.translationListenerNode ? self.translationListenerNode : self.mapNode); + if (0 == translationListenerNode.inTouchPoints.size + && + (0 == keyboardDiffVec.x && 0 == keyboardDiffVec.y) + ) { + this.cachedStickHeadPosition = cc.v2(0, 0); // Important reset! + } }, discretizeDirection(continuousDx, continuousDy, eps) { @@ -312,18 +397,23 @@ cc.Class({ return ret; }, - decodeDirection(encodedDirection) { - const mapped = window.DIRECTION_DECODER[encodedDirection]; - if (null == mapped) { - console.error("Unexpected encodedDirection = ", encodedDirection); - } - return { - dx: mapped[0], - dy: mapped[1], - }; + getEncodedInput() { + const discretizedDir = this.discretizeDirection(this.stickhead.x, this.stickhead.y, this.joyStickEps).encodedIdx; // There're only 9 dirs, thus using only the lower 4-bits + const btnALevel = (this.cachedBtnALevel << 4); + return (btnALevel + discretizedDir); }, - getDiscretizedDirection() { - return this.discretizeDirection(this.cachedStickHeadPosition.x, this.cachedStickHeadPosition.y, this.joyStickEps); - } + decodeInput(encodedInput) { + const encodedDirection = (encodedInput & 0xf); + const mappedDirection = window.DIRECTION_DECODER[encodedDirection]; + if (null == mappedDirection) { + console.error("Unexpected encodedDirection = ", encodedDirection); + } + const btnALevel = ((encodedInput >> 4) & 1); + return { + dx: mappedDirection[0], + dy: mappedDirection[1], + a: btnALevel, + }; + }, }); diff --git a/frontend/assets/scripts/modules/room_downsync_frame_proto_bundle.forcemsg.js b/frontend/assets/scripts/modules/room_downsync_frame_proto_bundle.forcemsg.js index 8ced168..83e8504 100644 --- a/frontend/assets/scripts/modules/room_downsync_frame_proto_bundle.forcemsg.js +++ b/frontend/assets/scripts/modules/room_downsync_frame_proto_bundle.forcemsg.js @@ -83,9 +83,9 @@ $root.sharedprotos = (function() { Direction.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.dx != null && message.hasOwnProperty("dx")) + if (message.dx != null && Object.hasOwnProperty.call(message, "dx")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.dx); - if (message.dy != null && message.hasOwnProperty("dy")) + if (message.dy != null && Object.hasOwnProperty.call(message, "dy")) writer.uint32(/* id 2, wireType 0 =*/16).int32(message.dy); return writer; }; @@ -121,12 +121,14 @@ $root.sharedprotos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.dx = reader.int32(); - break; - case 2: - message.dy = reader.int32(); - break; + case 1: { + message.dx = reader.int32(); + break; + } + case 2: { + message.dy = reader.int32(); + break; + } default: reader.skipType(tag & 7); break; @@ -225,6 +227,21 @@ $root.sharedprotos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for Direction + * @function getTypeUrl + * @memberof sharedprotos.Direction + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + Direction.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/sharedprotos.Direction"; + }; + return Direction; })(); @@ -293,9 +310,9 @@ $root.sharedprotos = (function() { Vec2D.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.x != null && message.hasOwnProperty("x")) + if (message.x != null && Object.hasOwnProperty.call(message, "x")) writer.uint32(/* id 1, wireType 1 =*/9).double(message.x); - if (message.y != null && message.hasOwnProperty("y")) + if (message.y != null && Object.hasOwnProperty.call(message, "y")) writer.uint32(/* id 2, wireType 1 =*/17).double(message.y); return writer; }; @@ -331,12 +348,14 @@ $root.sharedprotos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.x = reader.double(); - break; - case 2: - message.y = reader.double(); - break; + case 1: { + message.x = reader.double(); + break; + } + case 2: { + message.y = reader.double(); + break; + } default: reader.skipType(tag & 7); break; @@ -435,6 +454,21 @@ $root.sharedprotos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for Vec2D + * @function getTypeUrl + * @memberof sharedprotos.Vec2D + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + Vec2D.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/sharedprotos.Vec2D"; + }; + return Vec2D; })(); @@ -504,7 +538,7 @@ $root.sharedprotos = (function() { Polygon2D.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.anchor != null && message.hasOwnProperty("anchor")) + if (message.anchor != null && Object.hasOwnProperty.call(message, "anchor")) $root.sharedprotos.Vec2D.encode(message.anchor, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim(); if (message.points != null && message.points.length) for (var i = 0; i < message.points.length; ++i) @@ -543,14 +577,16 @@ $root.sharedprotos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.anchor = $root.sharedprotos.Vec2D.decode(reader, reader.uint32()); - break; - case 2: - if (!(message.points && message.points.length)) - message.points = []; - message.points.push($root.sharedprotos.Vec2D.decode(reader, reader.uint32())); - break; + case 1: { + message.anchor = $root.sharedprotos.Vec2D.decode(reader, reader.uint32()); + break; + } + case 2: { + if (!(message.points && message.points.length)) + message.points = []; + message.points.push($root.sharedprotos.Vec2D.decode(reader, reader.uint32())); + break; + } default: reader.skipType(tag & 7); break; @@ -671,6 +707,21 @@ $root.sharedprotos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for Polygon2D + * @function getTypeUrl + * @memberof sharedprotos.Polygon2D + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + Polygon2D.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/sharedprotos.Polygon2D"; + }; + return Polygon2D; })(); @@ -768,11 +819,12 @@ $root.sharedprotos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - if (!(message.eles && message.eles.length)) - message.eles = []; - message.eles.push($root.sharedprotos.Vec2D.decode(reader, reader.uint32())); - break; + case 1: { + if (!(message.eles && message.eles.length)) + message.eles = []; + message.eles.push($root.sharedprotos.Vec2D.decode(reader, reader.uint32())); + break; + } default: reader.skipType(tag & 7); break; @@ -879,6 +931,21 @@ $root.sharedprotos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for Vec2DList + * @function getTypeUrl + * @memberof sharedprotos.Vec2DList + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + Vec2DList.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/sharedprotos.Vec2DList"; + }; + return Vec2DList; })(); @@ -976,11 +1043,12 @@ $root.sharedprotos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - if (!(message.eles && message.eles.length)) - message.eles = []; - message.eles.push($root.sharedprotos.Polygon2D.decode(reader, reader.uint32())); - break; + case 1: { + if (!(message.eles && message.eles.length)) + message.eles = []; + message.eles.push($root.sharedprotos.Polygon2D.decode(reader, reader.uint32())); + break; + } default: reader.skipType(tag & 7); break; @@ -1087,6 +1155,21 @@ $root.sharedprotos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for Polygon2DList + * @function getTypeUrl + * @memberof sharedprotos.Polygon2DList + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + Polygon2DList.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/sharedprotos.Polygon2DList"; + }; + return Polygon2DList; })(); @@ -1349,55 +1432,55 @@ $root.protos = (function() { BattleColliderInfo.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.stageName != null && message.hasOwnProperty("stageName")) + if (message.stageName != null && Object.hasOwnProperty.call(message, "stageName")) writer.uint32(/* id 1, wireType 2 =*/10).string(message.stageName); - if (message.strToVec2DListMap != null && message.hasOwnProperty("strToVec2DListMap")) + if (message.strToVec2DListMap != null && Object.hasOwnProperty.call(message, "strToVec2DListMap")) for (var keys = Object.keys(message.strToVec2DListMap), i = 0; i < keys.length; ++i) { writer.uint32(/* id 2, wireType 2 =*/18).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); $root.sharedprotos.Vec2DList.encode(message.strToVec2DListMap[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); } - if (message.strToPolygon2DListMap != null && message.hasOwnProperty("strToPolygon2DListMap")) + if (message.strToPolygon2DListMap != null && Object.hasOwnProperty.call(message, "strToPolygon2DListMap")) for (var keys = Object.keys(message.strToPolygon2DListMap), i = 0; i < keys.length; ++i) { writer.uint32(/* id 3, wireType 2 =*/26).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]); $root.sharedprotos.Polygon2DList.encode(message.strToPolygon2DListMap[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); } - if (message.stageDiscreteW != null && message.hasOwnProperty("stageDiscreteW")) + if (message.stageDiscreteW != null && Object.hasOwnProperty.call(message, "stageDiscreteW")) writer.uint32(/* id 4, wireType 0 =*/32).int32(message.stageDiscreteW); - if (message.stageDiscreteH != null && message.hasOwnProperty("stageDiscreteH")) + if (message.stageDiscreteH != null && Object.hasOwnProperty.call(message, "stageDiscreteH")) writer.uint32(/* id 5, wireType 0 =*/40).int32(message.stageDiscreteH); - if (message.stageTileW != null && message.hasOwnProperty("stageTileW")) + if (message.stageTileW != null && Object.hasOwnProperty.call(message, "stageTileW")) writer.uint32(/* id 6, wireType 0 =*/48).int32(message.stageTileW); - if (message.stageTileH != null && message.hasOwnProperty("stageTileH")) + if (message.stageTileH != null && Object.hasOwnProperty.call(message, "stageTileH")) writer.uint32(/* id 7, wireType 0 =*/56).int32(message.stageTileH); - if (message.intervalToPing != null && message.hasOwnProperty("intervalToPing")) + if (message.intervalToPing != null && Object.hasOwnProperty.call(message, "intervalToPing")) writer.uint32(/* id 8, wireType 0 =*/64).int32(message.intervalToPing); - if (message.willKickIfInactiveFor != null && message.hasOwnProperty("willKickIfInactiveFor")) + if (message.willKickIfInactiveFor != null && Object.hasOwnProperty.call(message, "willKickIfInactiveFor")) writer.uint32(/* id 9, wireType 0 =*/72).int32(message.willKickIfInactiveFor); - if (message.boundRoomId != null && message.hasOwnProperty("boundRoomId")) + if (message.boundRoomId != null && Object.hasOwnProperty.call(message, "boundRoomId")) writer.uint32(/* id 10, wireType 0 =*/80).int32(message.boundRoomId); - if (message.battleDurationNanos != null && message.hasOwnProperty("battleDurationNanos")) + if (message.battleDurationNanos != null && Object.hasOwnProperty.call(message, "battleDurationNanos")) writer.uint32(/* id 11, wireType 0 =*/88).int64(message.battleDurationNanos); - if (message.serverFps != null && message.hasOwnProperty("serverFps")) + if (message.serverFps != null && Object.hasOwnProperty.call(message, "serverFps")) writer.uint32(/* id 12, wireType 0 =*/96).int32(message.serverFps); - if (message.inputDelayFrames != null && message.hasOwnProperty("inputDelayFrames")) + if (message.inputDelayFrames != null && Object.hasOwnProperty.call(message, "inputDelayFrames")) writer.uint32(/* id 13, wireType 0 =*/104).int32(message.inputDelayFrames); - if (message.inputScaleFrames != null && message.hasOwnProperty("inputScaleFrames")) + if (message.inputScaleFrames != null && Object.hasOwnProperty.call(message, "inputScaleFrames")) writer.uint32(/* id 14, wireType 0 =*/112).uint32(message.inputScaleFrames); - if (message.nstDelayFrames != null && message.hasOwnProperty("nstDelayFrames")) + if (message.nstDelayFrames != null && Object.hasOwnProperty.call(message, "nstDelayFrames")) writer.uint32(/* id 15, wireType 0 =*/120).int32(message.nstDelayFrames); - if (message.inputFrameUpsyncDelayTolerance != null && message.hasOwnProperty("inputFrameUpsyncDelayTolerance")) + if (message.inputFrameUpsyncDelayTolerance != null && Object.hasOwnProperty.call(message, "inputFrameUpsyncDelayTolerance")) writer.uint32(/* id 16, wireType 0 =*/128).int32(message.inputFrameUpsyncDelayTolerance); - if (message.maxChasingRenderFramesPerUpdate != null && message.hasOwnProperty("maxChasingRenderFramesPerUpdate")) + if (message.maxChasingRenderFramesPerUpdate != null && Object.hasOwnProperty.call(message, "maxChasingRenderFramesPerUpdate")) writer.uint32(/* id 17, wireType 0 =*/136).int32(message.maxChasingRenderFramesPerUpdate); - if (message.playerBattleState != null && message.hasOwnProperty("playerBattleState")) + if (message.playerBattleState != null && Object.hasOwnProperty.call(message, "playerBattleState")) writer.uint32(/* id 18, wireType 0 =*/144).int32(message.playerBattleState); - if (message.rollbackEstimatedDtMillis != null && message.hasOwnProperty("rollbackEstimatedDtMillis")) + if (message.rollbackEstimatedDtMillis != null && Object.hasOwnProperty.call(message, "rollbackEstimatedDtMillis")) writer.uint32(/* id 19, wireType 1 =*/153).double(message.rollbackEstimatedDtMillis); - if (message.rollbackEstimatedDtNanos != null && message.hasOwnProperty("rollbackEstimatedDtNanos")) + if (message.rollbackEstimatedDtNanos != null && Object.hasOwnProperty.call(message, "rollbackEstimatedDtNanos")) writer.uint32(/* id 20, wireType 0 =*/160).int64(message.rollbackEstimatedDtNanos); - if (message.worldToVirtualGridRatio != null && message.hasOwnProperty("worldToVirtualGridRatio")) + if (message.worldToVirtualGridRatio != null && Object.hasOwnProperty.call(message, "worldToVirtualGridRatio")) writer.uint32(/* id 21, wireType 1 =*/169).double(message.worldToVirtualGridRatio); - if (message.virtualGridToWorldRatio != null && message.hasOwnProperty("virtualGridToWorldRatio")) + if (message.virtualGridToWorldRatio != null && Object.hasOwnProperty.call(message, "virtualGridToWorldRatio")) writer.uint32(/* id 22, wireType 1 =*/177).double(message.virtualGridToWorldRatio); return writer; }; @@ -1429,86 +1512,136 @@ $root.protos = (function() { BattleColliderInfo.decode = function decode(reader, length) { if (!(reader instanceof $Reader)) reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.protos.BattleColliderInfo(), key; + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.protos.BattleColliderInfo(), key, value; while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.stageName = reader.string(); - break; - case 2: - reader.skip().pos++; - if (message.strToVec2DListMap === $util.emptyObject) - message.strToVec2DListMap = {}; - key = reader.string(); - reader.pos++; - message.strToVec2DListMap[key] = $root.sharedprotos.Vec2DList.decode(reader, reader.uint32()); - break; - case 3: - reader.skip().pos++; - if (message.strToPolygon2DListMap === $util.emptyObject) - message.strToPolygon2DListMap = {}; - key = reader.string(); - reader.pos++; - message.strToPolygon2DListMap[key] = $root.sharedprotos.Polygon2DList.decode(reader, reader.uint32()); - break; - case 4: - message.stageDiscreteW = reader.int32(); - break; - case 5: - message.stageDiscreteH = reader.int32(); - break; - case 6: - message.stageTileW = reader.int32(); - break; - case 7: - message.stageTileH = reader.int32(); - break; - case 8: - message.intervalToPing = reader.int32(); - break; - case 9: - message.willKickIfInactiveFor = reader.int32(); - break; - case 10: - message.boundRoomId = reader.int32(); - break; - case 11: - message.battleDurationNanos = reader.int64(); - break; - case 12: - message.serverFps = reader.int32(); - break; - case 13: - message.inputDelayFrames = reader.int32(); - break; - case 14: - message.inputScaleFrames = reader.uint32(); - break; - case 15: - message.nstDelayFrames = reader.int32(); - break; - case 16: - message.inputFrameUpsyncDelayTolerance = reader.int32(); - break; - case 17: - message.maxChasingRenderFramesPerUpdate = reader.int32(); - break; - case 18: - message.playerBattleState = reader.int32(); - break; - case 19: - message.rollbackEstimatedDtMillis = reader.double(); - break; - case 20: - message.rollbackEstimatedDtNanos = reader.int64(); - break; - case 21: - message.worldToVirtualGridRatio = reader.double(); - break; - case 22: - message.virtualGridToWorldRatio = reader.double(); - break; + case 1: { + message.stageName = reader.string(); + break; + } + case 2: { + if (message.strToVec2DListMap === $util.emptyObject) + message.strToVec2DListMap = {}; + var end2 = reader.uint32() + reader.pos; + key = ""; + value = null; + while (reader.pos < end2) { + var tag2 = reader.uint32(); + switch (tag2 >>> 3) { + case 1: + key = reader.string(); + break; + case 2: + value = $root.sharedprotos.Vec2DList.decode(reader, reader.uint32()); + break; + default: + reader.skipType(tag2 & 7); + break; + } + } + message.strToVec2DListMap[key] = value; + break; + } + case 3: { + if (message.strToPolygon2DListMap === $util.emptyObject) + message.strToPolygon2DListMap = {}; + var end2 = reader.uint32() + reader.pos; + key = ""; + value = null; + while (reader.pos < end2) { + var tag2 = reader.uint32(); + switch (tag2 >>> 3) { + case 1: + key = reader.string(); + break; + case 2: + value = $root.sharedprotos.Polygon2DList.decode(reader, reader.uint32()); + break; + default: + reader.skipType(tag2 & 7); + break; + } + } + message.strToPolygon2DListMap[key] = value; + break; + } + case 4: { + message.stageDiscreteW = reader.int32(); + break; + } + case 5: { + message.stageDiscreteH = reader.int32(); + break; + } + case 6: { + message.stageTileW = reader.int32(); + break; + } + case 7: { + message.stageTileH = reader.int32(); + break; + } + case 8: { + message.intervalToPing = reader.int32(); + break; + } + case 9: { + message.willKickIfInactiveFor = reader.int32(); + break; + } + case 10: { + message.boundRoomId = reader.int32(); + break; + } + case 11: { + message.battleDurationNanos = reader.int64(); + break; + } + case 12: { + message.serverFps = reader.int32(); + break; + } + case 13: { + message.inputDelayFrames = reader.int32(); + break; + } + case 14: { + message.inputScaleFrames = reader.uint32(); + break; + } + case 15: { + message.nstDelayFrames = reader.int32(); + break; + } + case 16: { + message.inputFrameUpsyncDelayTolerance = reader.int32(); + break; + } + case 17: { + message.maxChasingRenderFramesPerUpdate = reader.int32(); + break; + } + case 18: { + message.playerBattleState = reader.int32(); + break; + } + case 19: { + message.rollbackEstimatedDtMillis = reader.double(); + break; + } + case 20: { + message.rollbackEstimatedDtNanos = reader.int64(); + break; + } + case 21: { + message.worldToVirtualGridRatio = reader.double(); + break; + } + case 22: { + message.virtualGridToWorldRatio = reader.double(); + break; + } default: reader.skipType(tag & 7); break; @@ -1834,6 +1967,21 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for BattleColliderInfo + * @function getTypeUrl + * @memberof protos.BattleColliderInfo + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + BattleColliderInfo.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.BattleColliderInfo"; + }; + return BattleColliderInfo; })(); @@ -1974,25 +2122,25 @@ $root.protos = (function() { PlayerDownsync.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) + if (message.id != null && Object.hasOwnProperty.call(message, "id")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.id); - if (message.virtualGridX != null && message.hasOwnProperty("virtualGridX")) + if (message.virtualGridX != null && Object.hasOwnProperty.call(message, "virtualGridX")) writer.uint32(/* id 2, wireType 0 =*/16).int32(message.virtualGridX); - if (message.virtualGridY != null && message.hasOwnProperty("virtualGridY")) + if (message.virtualGridY != null && Object.hasOwnProperty.call(message, "virtualGridY")) writer.uint32(/* id 3, wireType 0 =*/24).int32(message.virtualGridY); - if (message.dir != null && message.hasOwnProperty("dir")) + if (message.dir != null && Object.hasOwnProperty.call(message, "dir")) $root.sharedprotos.Direction.encode(message.dir, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); - if (message.speed != null && message.hasOwnProperty("speed")) + if (message.speed != null && Object.hasOwnProperty.call(message, "speed")) writer.uint32(/* id 5, wireType 0 =*/40).int32(message.speed); - if (message.battleState != null && message.hasOwnProperty("battleState")) + if (message.battleState != null && Object.hasOwnProperty.call(message, "battleState")) writer.uint32(/* id 6, wireType 0 =*/48).int32(message.battleState); - if (message.lastMoveGmtMillis != null && message.hasOwnProperty("lastMoveGmtMillis")) + if (message.lastMoveGmtMillis != null && Object.hasOwnProperty.call(message, "lastMoveGmtMillis")) writer.uint32(/* id 7, wireType 0 =*/56).int32(message.lastMoveGmtMillis); - if (message.score != null && message.hasOwnProperty("score")) + if (message.score != null && Object.hasOwnProperty.call(message, "score")) writer.uint32(/* id 10, wireType 0 =*/80).int32(message.score); - if (message.removed != null && message.hasOwnProperty("removed")) + if (message.removed != null && Object.hasOwnProperty.call(message, "removed")) writer.uint32(/* id 11, wireType 0 =*/88).bool(message.removed); - if (message.joinIndex != null && message.hasOwnProperty("joinIndex")) + if (message.joinIndex != null && Object.hasOwnProperty.call(message, "joinIndex")) writer.uint32(/* id 12, wireType 0 =*/96).int32(message.joinIndex); return writer; }; @@ -2028,36 +2176,46 @@ $root.protos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.id = reader.int32(); - break; - case 2: - message.virtualGridX = reader.int32(); - break; - case 3: - message.virtualGridY = reader.int32(); - break; - case 4: - message.dir = $root.sharedprotos.Direction.decode(reader, reader.uint32()); - break; - case 5: - message.speed = reader.int32(); - break; - case 6: - message.battleState = reader.int32(); - break; - case 7: - message.lastMoveGmtMillis = reader.int32(); - break; - case 10: - message.score = reader.int32(); - break; - case 11: - message.removed = reader.bool(); - break; - case 12: - message.joinIndex = reader.int32(); - break; + case 1: { + message.id = reader.int32(); + break; + } + case 2: { + message.virtualGridX = reader.int32(); + break; + } + case 3: { + message.virtualGridY = reader.int32(); + break; + } + case 4: { + message.dir = $root.sharedprotos.Direction.decode(reader, reader.uint32()); + break; + } + case 5: { + message.speed = reader.int32(); + break; + } + case 6: { + message.battleState = reader.int32(); + break; + } + case 7: { + message.lastMoveGmtMillis = reader.int32(); + break; + } + case 10: { + message.score = reader.int32(); + break; + } + case 11: { + message.removed = reader.bool(); + break; + } + case 12: { + message.joinIndex = reader.int32(); + break; + } default: reader.skipType(tag & 7); break; @@ -2225,6 +2383,21 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for PlayerDownsync + * @function getTypeUrl + * @memberof protos.PlayerDownsync + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + PlayerDownsync.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.PlayerDownsync"; + }; + return PlayerDownsync; })(); @@ -2329,17 +2502,17 @@ $root.protos = (function() { PlayerDownsyncMeta.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) + if (message.id != null && Object.hasOwnProperty.call(message, "id")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.id); - if (message.name != null && message.hasOwnProperty("name")) + if (message.name != null && Object.hasOwnProperty.call(message, "name")) writer.uint32(/* id 2, wireType 2 =*/18).string(message.name); - if (message.displayName != null && message.hasOwnProperty("displayName")) + if (message.displayName != null && Object.hasOwnProperty.call(message, "displayName")) writer.uint32(/* id 3, wireType 2 =*/26).string(message.displayName); - if (message.avatar != null && message.hasOwnProperty("avatar")) + if (message.avatar != null && Object.hasOwnProperty.call(message, "avatar")) writer.uint32(/* id 4, wireType 2 =*/34).string(message.avatar); - if (message.joinIndex != null && message.hasOwnProperty("joinIndex")) + if (message.joinIndex != null && Object.hasOwnProperty.call(message, "joinIndex")) writer.uint32(/* id 5, wireType 0 =*/40).int32(message.joinIndex); - if (message.colliderRadius != null && message.hasOwnProperty("colliderRadius")) + if (message.colliderRadius != null && Object.hasOwnProperty.call(message, "colliderRadius")) writer.uint32(/* id 6, wireType 1 =*/49).double(message.colliderRadius); return writer; }; @@ -2375,24 +2548,30 @@ $root.protos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.id = reader.int32(); - break; - case 2: - message.name = reader.string(); - break; - case 3: - message.displayName = reader.string(); - break; - case 4: - message.avatar = reader.string(); - break; - case 5: - message.joinIndex = reader.int32(); - break; - case 6: - message.colliderRadius = reader.double(); - break; + case 1: { + message.id = reader.int32(); + break; + } + case 2: { + message.name = reader.string(); + break; + } + case 3: { + message.displayName = reader.string(); + break; + } + case 4: { + message.avatar = reader.string(); + break; + } + case 5: { + message.joinIndex = reader.int32(); + break; + } + case 6: { + message.colliderRadius = reader.double(); + break; + } default: reader.skipType(tag & 7); break; @@ -2523,9 +2702,274 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for PlayerDownsyncMeta + * @function getTypeUrl + * @memberof protos.PlayerDownsyncMeta + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + PlayerDownsyncMeta.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.PlayerDownsyncMeta"; + }; + return PlayerDownsyncMeta; })(); + protos.InputFrameDecoded = (function() { + + /** + * Properties of an InputFrameDecoded. + * @memberof protos + * @interface IInputFrameDecoded + * @property {number|null} [dx] InputFrameDecoded dx + * @property {number|null} [dy] InputFrameDecoded dy + * @property {number|null} [btnALevel] InputFrameDecoded btnALevel + */ + + /** + * Constructs a new InputFrameDecoded. + * @memberof protos + * @classdesc Represents an InputFrameDecoded. + * @implements IInputFrameDecoded + * @constructor + * @param {protos.IInputFrameDecoded=} [properties] Properties to set + */ + function InputFrameDecoded(properties) { + if (properties) + for (var keys = Object.keys(properties), i = 0; i < keys.length; ++i) + if (properties[keys[i]] != null) + this[keys[i]] = properties[keys[i]]; + } + + /** + * InputFrameDecoded dx. + * @member {number} dx + * @memberof protos.InputFrameDecoded + * @instance + */ + InputFrameDecoded.prototype.dx = 0; + + /** + * InputFrameDecoded dy. + * @member {number} dy + * @memberof protos.InputFrameDecoded + * @instance + */ + InputFrameDecoded.prototype.dy = 0; + + /** + * InputFrameDecoded btnALevel. + * @member {number} btnALevel + * @memberof protos.InputFrameDecoded + * @instance + */ + InputFrameDecoded.prototype.btnALevel = 0; + + /** + * Creates a new InputFrameDecoded instance using the specified properties. + * @function create + * @memberof protos.InputFrameDecoded + * @static + * @param {protos.IInputFrameDecoded=} [properties] Properties to set + * @returns {protos.InputFrameDecoded} InputFrameDecoded instance + */ + InputFrameDecoded.create = function create(properties) { + return new InputFrameDecoded(properties); + }; + + /** + * Encodes the specified InputFrameDecoded message. Does not implicitly {@link protos.InputFrameDecoded.verify|verify} messages. + * @function encode + * @memberof protos.InputFrameDecoded + * @static + * @param {protos.InputFrameDecoded} message InputFrameDecoded message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + InputFrameDecoded.encode = function encode(message, writer) { + if (!writer) + writer = $Writer.create(); + if (message.dx != null && Object.hasOwnProperty.call(message, "dx")) + writer.uint32(/* id 1, wireType 0 =*/8).int32(message.dx); + if (message.dy != null && Object.hasOwnProperty.call(message, "dy")) + writer.uint32(/* id 2, wireType 0 =*/16).int32(message.dy); + if (message.btnALevel != null && Object.hasOwnProperty.call(message, "btnALevel")) + writer.uint32(/* id 3, wireType 0 =*/24).int32(message.btnALevel); + return writer; + }; + + /** + * Encodes the specified InputFrameDecoded message, length delimited. Does not implicitly {@link protos.InputFrameDecoded.verify|verify} messages. + * @function encodeDelimited + * @memberof protos.InputFrameDecoded + * @static + * @param {protos.InputFrameDecoded} message InputFrameDecoded message or plain object to encode + * @param {$protobuf.Writer} [writer] Writer to encode to + * @returns {$protobuf.Writer} Writer + */ + InputFrameDecoded.encodeDelimited = function encodeDelimited(message, writer) { + return this.encode(message, writer).ldelim(); + }; + + /** + * Decodes an InputFrameDecoded message from the specified reader or buffer. + * @function decode + * @memberof protos.InputFrameDecoded + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @param {number} [length] Message length if known beforehand + * @returns {protos.InputFrameDecoded} InputFrameDecoded + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + InputFrameDecoded.decode = function decode(reader, length) { + if (!(reader instanceof $Reader)) + reader = $Reader.create(reader); + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.protos.InputFrameDecoded(); + while (reader.pos < end) { + var tag = reader.uint32(); + switch (tag >>> 3) { + case 1: { + message.dx = reader.int32(); + break; + } + case 2: { + message.dy = reader.int32(); + break; + } + case 3: { + message.btnALevel = reader.int32(); + break; + } + default: + reader.skipType(tag & 7); + break; + } + } + return message; + }; + + /** + * Decodes an InputFrameDecoded message from the specified reader or buffer, length delimited. + * @function decodeDelimited + * @memberof protos.InputFrameDecoded + * @static + * @param {$protobuf.Reader|Uint8Array} reader Reader or buffer to decode from + * @returns {protos.InputFrameDecoded} InputFrameDecoded + * @throws {Error} If the payload is not a reader or valid buffer + * @throws {$protobuf.util.ProtocolError} If required fields are missing + */ + InputFrameDecoded.decodeDelimited = function decodeDelimited(reader) { + if (!(reader instanceof $Reader)) + reader = new $Reader(reader); + return this.decode(reader, reader.uint32()); + }; + + /** + * Verifies an InputFrameDecoded message. + * @function verify + * @memberof protos.InputFrameDecoded + * @static + * @param {Object.} message Plain object to verify + * @returns {string|null} `null` if valid, otherwise the reason why it is not + */ + InputFrameDecoded.verify = function verify(message) { + if (typeof message !== "object" || message === null) + return "object expected"; + if (message.dx != null && message.hasOwnProperty("dx")) + if (!$util.isInteger(message.dx)) + return "dx: integer expected"; + if (message.dy != null && message.hasOwnProperty("dy")) + if (!$util.isInteger(message.dy)) + return "dy: integer expected"; + if (message.btnALevel != null && message.hasOwnProperty("btnALevel")) + if (!$util.isInteger(message.btnALevel)) + return "btnALevel: integer expected"; + return null; + }; + + /** + * Creates an InputFrameDecoded message from a plain object. Also converts values to their respective internal types. + * @function fromObject + * @memberof protos.InputFrameDecoded + * @static + * @param {Object.} object Plain object + * @returns {protos.InputFrameDecoded} InputFrameDecoded + */ + InputFrameDecoded.fromObject = function fromObject(object) { + if (object instanceof $root.protos.InputFrameDecoded) + return object; + var message = new $root.protos.InputFrameDecoded(); + if (object.dx != null) + message.dx = object.dx | 0; + if (object.dy != null) + message.dy = object.dy | 0; + if (object.btnALevel != null) + message.btnALevel = object.btnALevel | 0; + return message; + }; + + /** + * Creates a plain object from an InputFrameDecoded message. Also converts values to other types if specified. + * @function toObject + * @memberof protos.InputFrameDecoded + * @static + * @param {protos.InputFrameDecoded} message InputFrameDecoded + * @param {$protobuf.IConversionOptions} [options] Conversion options + * @returns {Object.} Plain object + */ + InputFrameDecoded.toObject = function toObject(message, options) { + if (!options) + options = {}; + var object = {}; + if (options.defaults) { + object.dx = 0; + object.dy = 0; + object.btnALevel = 0; + } + if (message.dx != null && message.hasOwnProperty("dx")) + object.dx = message.dx; + if (message.dy != null && message.hasOwnProperty("dy")) + object.dy = message.dy; + if (message.btnALevel != null && message.hasOwnProperty("btnALevel")) + object.btnALevel = message.btnALevel; + return object; + }; + + /** + * Converts this InputFrameDecoded to JSON. + * @function toJSON + * @memberof protos.InputFrameDecoded + * @instance + * @returns {Object.} JSON object + */ + InputFrameDecoded.prototype.toJSON = function toJSON() { + return this.constructor.toObject(this, $protobuf.util.toJSONOptions); + }; + + /** + * Gets the default type url for InputFrameDecoded + * @function getTypeUrl + * @memberof protos.InputFrameDecoded + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + InputFrameDecoded.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.InputFrameDecoded"; + }; + + return InputFrameDecoded; + })(); + protos.InputFrameUpsync = (function() { /** @@ -2533,7 +2977,7 @@ $root.protos = (function() { * @memberof protos * @interface IInputFrameUpsync * @property {number|null} [inputFrameId] InputFrameUpsync inputFrameId - * @property {number|null} [encodedDir] InputFrameUpsync encodedDir + * @property {number|Long|null} [encoded] InputFrameUpsync encoded */ /** @@ -2560,12 +3004,12 @@ $root.protos = (function() { InputFrameUpsync.prototype.inputFrameId = 0; /** - * InputFrameUpsync encodedDir. - * @member {number} encodedDir + * InputFrameUpsync encoded. + * @member {number|Long} encoded * @memberof protos.InputFrameUpsync * @instance */ - InputFrameUpsync.prototype.encodedDir = 0; + InputFrameUpsync.prototype.encoded = $util.Long ? $util.Long.fromBits(0,0,true) : 0; /** * Creates a new InputFrameUpsync instance using the specified properties. @@ -2591,10 +3035,10 @@ $root.protos = (function() { InputFrameUpsync.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.inputFrameId != null && message.hasOwnProperty("inputFrameId")) + if (message.inputFrameId != null && Object.hasOwnProperty.call(message, "inputFrameId")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.inputFrameId); - if (message.encodedDir != null && message.hasOwnProperty("encodedDir")) - writer.uint32(/* id 6, wireType 0 =*/48).int32(message.encodedDir); + if (message.encoded != null && Object.hasOwnProperty.call(message, "encoded")) + writer.uint32(/* id 2, wireType 0 =*/16).uint64(message.encoded); return writer; }; @@ -2629,12 +3073,14 @@ $root.protos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.inputFrameId = reader.int32(); - break; - case 6: - message.encodedDir = reader.int32(); - break; + case 1: { + message.inputFrameId = reader.int32(); + break; + } + case 2: { + message.encoded = reader.uint64(); + break; + } default: reader.skipType(tag & 7); break; @@ -2673,9 +3119,9 @@ $root.protos = (function() { if (message.inputFrameId != null && message.hasOwnProperty("inputFrameId")) if (!$util.isInteger(message.inputFrameId)) return "inputFrameId: integer expected"; - if (message.encodedDir != null && message.hasOwnProperty("encodedDir")) - if (!$util.isInteger(message.encodedDir)) - return "encodedDir: integer expected"; + if (message.encoded != null && message.hasOwnProperty("encoded")) + if (!$util.isInteger(message.encoded) && !(message.encoded && $util.isInteger(message.encoded.low) && $util.isInteger(message.encoded.high))) + return "encoded: integer|Long expected"; return null; }; @@ -2693,8 +3139,15 @@ $root.protos = (function() { var message = new $root.protos.InputFrameUpsync(); if (object.inputFrameId != null) message.inputFrameId = object.inputFrameId | 0; - if (object.encodedDir != null) - message.encodedDir = object.encodedDir | 0; + if (object.encoded != null) + if ($util.Long) + (message.encoded = $util.Long.fromValue(object.encoded)).unsigned = true; + else if (typeof object.encoded === "string") + message.encoded = parseInt(object.encoded, 10); + else if (typeof object.encoded === "number") + message.encoded = object.encoded; + else if (typeof object.encoded === "object") + message.encoded = new $util.LongBits(object.encoded.low >>> 0, object.encoded.high >>> 0).toNumber(true); return message; }; @@ -2713,12 +3166,19 @@ $root.protos = (function() { var object = {}; if (options.defaults) { object.inputFrameId = 0; - object.encodedDir = 0; + if ($util.Long) { + var long = new $util.Long(0, 0, true); + object.encoded = options.longs === String ? long.toString() : options.longs === Number ? long.toNumber() : long; + } else + object.encoded = options.longs === String ? "0" : 0; } if (message.inputFrameId != null && message.hasOwnProperty("inputFrameId")) object.inputFrameId = message.inputFrameId; - if (message.encodedDir != null && message.hasOwnProperty("encodedDir")) - object.encodedDir = message.encodedDir; + if (message.encoded != null && message.hasOwnProperty("encoded")) + if (typeof message.encoded === "number") + object.encoded = options.longs === String ? String(message.encoded) : message.encoded; + else + object.encoded = options.longs === String ? $util.Long.prototype.toString.call(message.encoded) : options.longs === Number ? new $util.LongBits(message.encoded.low >>> 0, message.encoded.high >>> 0).toNumber(true) : message.encoded; return object; }; @@ -2733,6 +3193,21 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for InputFrameUpsync + * @function getTypeUrl + * @memberof protos.InputFrameUpsync + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + InputFrameUpsync.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.InputFrameUpsync"; + }; + return InputFrameUpsync; })(); @@ -2811,7 +3286,7 @@ $root.protos = (function() { InputFrameDownsync.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.inputFrameId != null && message.hasOwnProperty("inputFrameId")) + if (message.inputFrameId != null && Object.hasOwnProperty.call(message, "inputFrameId")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.inputFrameId); if (message.inputList != null && message.inputList.length) { writer.uint32(/* id 2, wireType 2 =*/18).fork(); @@ -2819,7 +3294,7 @@ $root.protos = (function() { writer.uint64(message.inputList[i]); writer.ldelim(); } - if (message.confirmedList != null && message.hasOwnProperty("confirmedList")) + if (message.confirmedList != null && Object.hasOwnProperty.call(message, "confirmedList")) writer.uint32(/* id 3, wireType 0 =*/24).uint64(message.confirmedList); return writer; }; @@ -2855,22 +3330,25 @@ $root.protos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.inputFrameId = reader.int32(); - break; - case 2: - if (!(message.inputList && message.inputList.length)) - message.inputList = []; - if ((tag & 7) === 2) { - var end2 = reader.uint32() + reader.pos; - while (reader.pos < end2) + case 1: { + message.inputFrameId = reader.int32(); + break; + } + case 2: { + if (!(message.inputList && message.inputList.length)) + message.inputList = []; + if ((tag & 7) === 2) { + var end2 = reader.uint32() + reader.pos; + while (reader.pos < end2) + message.inputList.push(reader.uint64()); + } else message.inputList.push(reader.uint64()); - } else - message.inputList.push(reader.uint64()); - break; - case 3: - message.confirmedList = reader.uint64(); - break; + break; + } + case 3: { + message.confirmedList = reader.uint64(); + break; + } default: reader.skipType(tag & 7); break; @@ -3014,6 +3492,21 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for InputFrameDownsync + * @function getTypeUrl + * @memberof protos.InputFrameDownsync + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + InputFrameDownsync.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.InputFrameDownsync"; + }; + return InputFrameDownsync; })(); @@ -3073,7 +3566,7 @@ $root.protos = (function() { HeartbeatUpsync.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.clientTimestamp != null && message.hasOwnProperty("clientTimestamp")) + if (message.clientTimestamp != null && Object.hasOwnProperty.call(message, "clientTimestamp")) writer.uint32(/* id 1, wireType 0 =*/8).int64(message.clientTimestamp); return writer; }; @@ -3109,9 +3602,10 @@ $root.protos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.clientTimestamp = reader.int64(); - break; + case 1: { + message.clientTimestamp = reader.int64(); + break; + } default: reader.skipType(tag & 7); break; @@ -3215,6 +3709,21 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for HeartbeatUpsync + * @function getTypeUrl + * @memberof protos.HeartbeatUpsync + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + HeartbeatUpsync.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.HeartbeatUpsync"; + }; + return HeartbeatUpsync; })(); @@ -3303,16 +3812,16 @@ $root.protos = (function() { RoomDownsyncFrame.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.id != null && message.hasOwnProperty("id")) + if (message.id != null && Object.hasOwnProperty.call(message, "id")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.id); - if (message.players != null && message.hasOwnProperty("players")) + if (message.players != null && Object.hasOwnProperty.call(message, "players")) for (var keys = Object.keys(message.players), i = 0; i < keys.length; ++i) { writer.uint32(/* id 2, wireType 2 =*/18).fork().uint32(/* id 1, wireType 0 =*/8).int32(keys[i]); $root.protos.PlayerDownsync.encode(message.players[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); } - if (message.countdownNanos != null && message.hasOwnProperty("countdownNanos")) + if (message.countdownNanos != null && Object.hasOwnProperty.call(message, "countdownNanos")) writer.uint32(/* id 3, wireType 0 =*/24).int64(message.countdownNanos); - if (message.playerMetas != null && message.hasOwnProperty("playerMetas")) + if (message.playerMetas != null && Object.hasOwnProperty.call(message, "playerMetas")) for (var keys = Object.keys(message.playerMetas), i = 0; i < keys.length; ++i) { writer.uint32(/* id 4, wireType 2 =*/34).fork().uint32(/* id 1, wireType 0 =*/8).int32(keys[i]); $root.protos.PlayerDownsyncMeta.encode(message.playerMetas[keys[i]], writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim().ldelim(); @@ -3347,32 +3856,64 @@ $root.protos = (function() { RoomDownsyncFrame.decode = function decode(reader, length) { if (!(reader instanceof $Reader)) reader = $Reader.create(reader); - var end = length === undefined ? reader.len : reader.pos + length, message = new $root.protos.RoomDownsyncFrame(), key; + var end = length === undefined ? reader.len : reader.pos + length, message = new $root.protos.RoomDownsyncFrame(), key, value; while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.id = reader.int32(); - break; - case 2: - reader.skip().pos++; - if (message.players === $util.emptyObject) - message.players = {}; - key = reader.int32(); - reader.pos++; - message.players[key] = $root.protos.PlayerDownsync.decode(reader, reader.uint32()); - break; - case 3: - message.countdownNanos = reader.int64(); - break; - case 4: - reader.skip().pos++; - if (message.playerMetas === $util.emptyObject) - message.playerMetas = {}; - key = reader.int32(); - reader.pos++; - message.playerMetas[key] = $root.protos.PlayerDownsyncMeta.decode(reader, reader.uint32()); - break; + case 1: { + message.id = reader.int32(); + break; + } + case 2: { + if (message.players === $util.emptyObject) + message.players = {}; + var end2 = reader.uint32() + reader.pos; + key = 0; + value = null; + while (reader.pos < end2) { + var tag2 = reader.uint32(); + switch (tag2 >>> 3) { + case 1: + key = reader.int32(); + break; + case 2: + value = $root.protos.PlayerDownsync.decode(reader, reader.uint32()); + break; + default: + reader.skipType(tag2 & 7); + break; + } + } + message.players[key] = value; + break; + } + case 3: { + message.countdownNanos = reader.int64(); + break; + } + case 4: { + if (message.playerMetas === $util.emptyObject) + message.playerMetas = {}; + var end2 = reader.uint32() + reader.pos; + key = 0; + value = null; + while (reader.pos < end2) { + var tag2 = reader.uint32(); + switch (tag2 >>> 3) { + case 1: + key = reader.int32(); + break; + case 2: + value = $root.protos.PlayerDownsyncMeta.decode(reader, reader.uint32()); + break; + default: + reader.skipType(tag2 & 7); + break; + } + } + message.playerMetas[key] = value; + break; + } default: reader.skipType(tag & 7); break; @@ -3548,6 +4089,21 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for RoomDownsyncFrame + * @function getTypeUrl + * @memberof protos.RoomDownsyncFrame + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + RoomDownsyncFrame.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.RoomDownsyncFrame"; + }; + return RoomDownsyncFrame; })(); @@ -3671,22 +4227,22 @@ $root.protos = (function() { WsReq.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.msgId != null && message.hasOwnProperty("msgId")) + if (message.msgId != null && Object.hasOwnProperty.call(message, "msgId")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.msgId); - if (message.playerId != null && message.hasOwnProperty("playerId")) + if (message.playerId != null && Object.hasOwnProperty.call(message, "playerId")) writer.uint32(/* id 2, wireType 0 =*/16).int32(message.playerId); - if (message.act != null && message.hasOwnProperty("act")) + if (message.act != null && Object.hasOwnProperty.call(message, "act")) writer.uint32(/* id 3, wireType 0 =*/24).int32(message.act); - if (message.joinIndex != null && message.hasOwnProperty("joinIndex")) + if (message.joinIndex != null && Object.hasOwnProperty.call(message, "joinIndex")) writer.uint32(/* id 4, wireType 0 =*/32).int32(message.joinIndex); - if (message.ackingFrameId != null && message.hasOwnProperty("ackingFrameId")) + if (message.ackingFrameId != null && Object.hasOwnProperty.call(message, "ackingFrameId")) writer.uint32(/* id 5, wireType 0 =*/40).int32(message.ackingFrameId); - if (message.ackingInputFrameId != null && message.hasOwnProperty("ackingInputFrameId")) + if (message.ackingInputFrameId != null && Object.hasOwnProperty.call(message, "ackingInputFrameId")) writer.uint32(/* id 6, wireType 0 =*/48).int32(message.ackingInputFrameId); if (message.inputFrameUpsyncBatch != null && message.inputFrameUpsyncBatch.length) for (var i = 0; i < message.inputFrameUpsyncBatch.length; ++i) $root.protos.InputFrameUpsync.encode(message.inputFrameUpsyncBatch[i], writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim(); - if (message.hb != null && message.hasOwnProperty("hb")) + if (message.hb != null && Object.hasOwnProperty.call(message, "hb")) $root.protos.HeartbeatUpsync.encode(message.hb, writer.uint32(/* id 8, wireType 2 =*/66).fork()).ldelim(); return writer; }; @@ -3722,32 +4278,40 @@ $root.protos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.msgId = reader.int32(); - break; - case 2: - message.playerId = reader.int32(); - break; - case 3: - message.act = reader.int32(); - break; - case 4: - message.joinIndex = reader.int32(); - break; - case 5: - message.ackingFrameId = reader.int32(); - break; - case 6: - message.ackingInputFrameId = reader.int32(); - break; - case 7: - if (!(message.inputFrameUpsyncBatch && message.inputFrameUpsyncBatch.length)) - message.inputFrameUpsyncBatch = []; - message.inputFrameUpsyncBatch.push($root.protos.InputFrameUpsync.decode(reader, reader.uint32())); - break; - case 8: - message.hb = $root.protos.HeartbeatUpsync.decode(reader, reader.uint32()); - break; + case 1: { + message.msgId = reader.int32(); + break; + } + case 2: { + message.playerId = reader.int32(); + break; + } + case 3: { + message.act = reader.int32(); + break; + } + case 4: { + message.joinIndex = reader.int32(); + break; + } + case 5: { + message.ackingFrameId = reader.int32(); + break; + } + case 6: { + message.ackingInputFrameId = reader.int32(); + break; + } + case 7: { + if (!(message.inputFrameUpsyncBatch && message.inputFrameUpsyncBatch.length)) + message.inputFrameUpsyncBatch = []; + message.inputFrameUpsyncBatch.push($root.protos.InputFrameUpsync.decode(reader, reader.uint32())); + break; + } + case 8: { + message.hb = $root.protos.HeartbeatUpsync.decode(reader, reader.uint32()); + break; + } default: reader.skipType(tag & 7); break; @@ -3917,6 +4481,21 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for WsReq + * @function getTypeUrl + * @memberof protos.WsReq + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + WsReq.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.WsReq"; + }; + return WsReq; })(); @@ -4022,18 +4601,18 @@ $root.protos = (function() { WsResp.encode = function encode(message, writer) { if (!writer) writer = $Writer.create(); - if (message.ret != null && message.hasOwnProperty("ret")) + if (message.ret != null && Object.hasOwnProperty.call(message, "ret")) writer.uint32(/* id 1, wireType 0 =*/8).int32(message.ret); - if (message.echoedMsgId != null && message.hasOwnProperty("echoedMsgId")) + if (message.echoedMsgId != null && Object.hasOwnProperty.call(message, "echoedMsgId")) writer.uint32(/* id 2, wireType 0 =*/16).int32(message.echoedMsgId); - if (message.act != null && message.hasOwnProperty("act")) + if (message.act != null && Object.hasOwnProperty.call(message, "act")) writer.uint32(/* id 3, wireType 0 =*/24).int32(message.act); - if (message.rdf != null && message.hasOwnProperty("rdf")) + if (message.rdf != null && Object.hasOwnProperty.call(message, "rdf")) $root.protos.RoomDownsyncFrame.encode(message.rdf, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim(); if (message.inputFrameDownsyncBatch != null && message.inputFrameDownsyncBatch.length) for (var i = 0; i < message.inputFrameDownsyncBatch.length; ++i) $root.protos.InputFrameDownsync.encode(message.inputFrameDownsyncBatch[i], writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim(); - if (message.bciFrame != null && message.hasOwnProperty("bciFrame")) + if (message.bciFrame != null && Object.hasOwnProperty.call(message, "bciFrame")) $root.protos.BattleColliderInfo.encode(message.bciFrame, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim(); return writer; }; @@ -4069,26 +4648,32 @@ $root.protos = (function() { while (reader.pos < end) { var tag = reader.uint32(); switch (tag >>> 3) { - case 1: - message.ret = reader.int32(); - break; - case 2: - message.echoedMsgId = reader.int32(); - break; - case 3: - message.act = reader.int32(); - break; - case 4: - message.rdf = $root.protos.RoomDownsyncFrame.decode(reader, reader.uint32()); - break; - case 5: - if (!(message.inputFrameDownsyncBatch && message.inputFrameDownsyncBatch.length)) - message.inputFrameDownsyncBatch = []; - message.inputFrameDownsyncBatch.push($root.protos.InputFrameDownsync.decode(reader, reader.uint32())); - break; - case 6: - message.bciFrame = $root.protos.BattleColliderInfo.decode(reader, reader.uint32()); - break; + case 1: { + message.ret = reader.int32(); + break; + } + case 2: { + message.echoedMsgId = reader.int32(); + break; + } + case 3: { + message.act = reader.int32(); + break; + } + case 4: { + message.rdf = $root.protos.RoomDownsyncFrame.decode(reader, reader.uint32()); + break; + } + case 5: { + if (!(message.inputFrameDownsyncBatch && message.inputFrameDownsyncBatch.length)) + message.inputFrameDownsyncBatch = []; + message.inputFrameDownsyncBatch.push($root.protos.InputFrameDownsync.decode(reader, reader.uint32())); + break; + } + case 6: { + message.bciFrame = $root.protos.BattleColliderInfo.decode(reader, reader.uint32()); + break; + } default: reader.skipType(tag & 7); break; @@ -4247,6 +4832,21 @@ $root.protos = (function() { return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * Gets the default type url for WsResp + * @function getTypeUrl + * @memberof protos.WsResp + * @static + * @param {string} [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com") + * @returns {string} The default type url + */ + WsResp.getTypeUrl = function getTypeUrl(typeUrlPrefix) { + if (typeUrlPrefix === undefined) { + typeUrlPrefix = "type.googleapis.com"; + } + return typeUrlPrefix + "/protos.WsResp"; + }; + return WsResp; })();